export declare function stringToMS(t: string): number | null; interface FormatMsOptions { verbose?: boolean; space?: boolean; maxDepth?: number; commas?: boolean; conjunction?: boolean; noMs?: boolean; } export declare function msToString(t: number, options?: FormatMsOptions): string; export {};