/**
 * Converts time in H:M:S format to milliseconds.
 *
 * @param time Time in HH:MM:SS or H:M:S format.
 * @return Milliseconds.
 */
declare function getMsFromHMS(time: string | null): number;
export default getMsFromHMS;
//# sourceMappingURL=getMsFromHMS.d.ts.map