import * as moment from 'moment';
import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps {
    DateTime: moment.Moment | undefined;
    Setter: (record: moment.Moment) => void;
    Accuracy?: Gemstone.TSX.Types.Accuracy;
}
export default function Clock(props: IProps): JSX.Element;
export {};
