/** * Holds the current text selection. * @internal */ export type SpinButtonTextSelection = { /** Index of selection start */ start: number; /** Index of selection end */ end: number; /** If true, index is right aligned. */ rtl?: boolean; };