import { StyleOptions } from '../../types'; export interface CaretColorProps { /** * The **`caret-color`** CSS property sets the color of the insertion caret, the visible marker where the next character typed will be inserted. The caret appears in elements such as `` or those with the `contenteditable` attribute. The caret is typically a thin vertical line that flashes to help make it more noticeable. By default, it is black, but its color can be altered with this property. * * @see https://developer.mozilla.org/docs/Web/CSS/caret-color */ style$CaretColor: T; } export declare const caretColor: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;