import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CaretPosition` - The `CaretPosition` object is used to describe the different positions of the caret in a text input or text area. * * @public */ export declare const CaretPosition: { /** * `before` - The caret is placed before the content. */ readonly Before: "before"; /** * `after` - The caret is placed after the content. **/ readonly After: "after"; }; /** * @public */ export type CaretPosition = ValuesOf; //# sourceMappingURL=CaretPosition.d.ts.map