import { InputHTMLAttributes } from 'react';
export type DateTimePickerProps = Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "value" | "onChange"> & {
    value?: string;
    onChange?: (value: string) => void;
    className?: string;
    inputClassName?: string;
    buttonClassName?: string;
    openButtonLabel?: string;
};
export declare const DateTimePicker: import('react').ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "type" | "onChange"> & {
    value?: string;
    onChange?: (value: string) => void;
    className?: string;
    inputClassName?: string;
    buttonClassName?: string;
    openButtonLabel?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=DateTimePicker.d.ts.map