/// <reference types="react" />
/// <reference types="react" />
import { BaseComponentAttributes } from '../utils/types';
export interface CalendarTimePickerProps extends BaseComponentAttributes {
    value?: Date;
    label?: string;
    format?: string;
    onChange?: (date?: Date) => void;
    onPickerToggle?: (show?: boolean) => void;
}
export default function CalendarTimePicker(props: CalendarTimePickerProps): JSX.Element;
