import { default as React } from 'react'; import { CursorStyle } from './types/cursor'; interface CursorProps { style?: Partial & Pick; isValid?: boolean; errorMessage?: string; } export declare const Cursor: React.FC; export {};