export declare const CSS_CURSOR_OPTIONS: ({
    value: string;
    label: string;
    icon: string;
    iconRotate: number;
} | {
    value: string;
    label: string;
    icon: string;
    iconRotate?: undefined;
} | {
    value: string;
    label: string;
    icon?: undefined;
    iconRotate?: undefined;
})[];
