export declare const TimePrecision: {
    MILLISECOND: "millisecond";
    MINUTE: "minute";
    SECOND: "second";
};
export type TimePrecision = (typeof TimePrecision)[keyof typeof TimePrecision];
