export declare class Time { /** * Parses a human readable time into miliseconds * * @param time string: time in human readable format * @returns number: the time in miliseconds */ static parse(time: string): number; private static parseTimestring; private static getUnitValues; private static getUnitKey; private static getSeconds; private static convert; }