declare enum ClockType {
    HOURS = "hours",
    MINUTES = "minutes",
    SECONDS = "seconds"
}
export declare type ClockTypeType = 'hours' | 'minutes' | 'seconds';
export default ClockType;
