import * as moment from 'moment';
import { TimeUnit } from '../DatePicker';
import { Accuracy } from './Clock';
interface IProps {
    DateTime: moment.Moment | undefined;
    Setter: (record: moment.Moment) => void;
    Valid: boolean;
    Feedback?: string;
    Type: TimeUnit;
    Show: boolean;
    Top: number;
    Center: number;
    Accuracy?: Accuracy;
}
export default function DateTimePopup(props: IProps): JSX.Element | null;
export {};
