export interface UseDatePickerClipboardOptions { value?: string | null; commit?: (value: string | null) => void; onSelectAll?: (value: string | null) => void; readOnly?: boolean; disabled?: boolean; } export interface DatePickerClipboardHandlers { onCopyCapture: (event: React.ClipboardEvent) => void; onCutCapture: (event: React.ClipboardEvent) => void; onPasteCapture: (event: React.ClipboardEvent) => void; onKeyDownCapture: (event: React.KeyboardEvent) => void; onDoubleClick: (event: React.MouseEvent) => void; onMouseDownCapture: (event: React.MouseEvent) => void; onBlur: (event: React.FocusEvent) => void; } export declare const useDatePickerClipboard: ({ value, commit, onSelectAll, readOnly, disabled, }: UseDatePickerClipboardOptions) => [boolean, DatePickerClipboardHandlers];