/** * Extract hour, minute, second & millisecond from an ISO 8601 string representation of a time. * * `hh:mm:ss.sss` and `Thhmmss.sss` are the full formats. * Shorter strings are handled down to `hh:mm` and `Thh`. * * - Ignores any date or timezone information in the given string * * @param isoTimeString A string containing an ISO 8601 time * @returns An object containing `hour`, `minute`, `second` & `millisecond` properties extracted from the string * @returns `null` if no time was found in the string */ export declare function timeParts(isoTimeString: string): { hour: number; minute: number; second?: number; millisecond?: number; } | null; //# sourceMappingURL=timeParts.d.ts.map