import * as moment from 'moment';
interface IProps {
DateTime: moment.Moment | undefined;
Setter: (record: moment.Moment) => void;
Accuracy?: Accuracy;
}
export type Accuracy = ('minute' | 'second' | 'millisecond');
export default function Clock(props: IProps): JSX.Element;
export {};