export declare const ONE_MUS = 1000;
export declare const ONE_MS = 1000000;
export declare const ONE_SEC = 1000000000;
export declare const ONE_MIN = 60000000000;
export declare const ONE_HOUR = 3600000000000;
export interface Diagnostics {
    notifyTimeTaken(time: number, label: string, source: any): void;
}
export declare function Hours(val: number): number;
export declare function Minutes(val: number): number;
export declare function Seconds(val: number): number;
export declare function Micros(val: number): number;
export declare function Millis(val: number): number;
export declare function StrToDuration(value: string): number;
