import * as React from "react"; type DateTimePickerProps = React.HTMLAttributes & { className?: string; onChangeDateTime?: (date: Date | undefined) => void; dateTimeValue?: Date | undefined; btnClassName?: string; placeHolderClassName?: string; placeholder?: string; }; export declare function DateTimePicker({ className, onChangeDateTime, dateTimeValue, btnClassName, placeHolderClassName, placeholder, }: DateTimePickerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=date-time-picker.d.ts.map