use std::sync::Arc;
pub struct TextEditOutput {
pub response: crate::Response,
pub galley: Arc<crate::Galley>,
pub text_draw_pos: crate::Pos2,
pub text_clip_rect: crate::Rect,
pub state: super::TextEditState,
pub cursor_range: Option<super::CursorRange>,
}