import * as React from 'react'; export type InternalAdaptableDateEditorApi = { focus: VoidFunction; }; export type InternalAdaptableDateEditorProps = { defaultValue?: string | Date | number | null; value?: string | Date | number | null; dateFormat: string; onValueChange?: (value: Date | null) => void; onStopEdit?: (keyboardEventKey?: string) => void; }; export declare const InternalAdaptableDateEditor: React.ForwardRefExoticComponent>;