import { Dispatch, SetStateAction } from 'react';
declare type Props = {
    setDatetimeFormat: Dispatch<SetStateAction<string>>;
};
declare const DateValidator: ({ setDatetimeFormat }: Props) => JSX.Element;
export default DateValidator;
