/** * Extract timezone offset as a time-duration of hours & minutes from * an ISO 8601 string representation of a date. */ export declare function timezoneOffsetParts(s: string): { hours: number; minutes: number; } | null; //# sourceMappingURL=timezoneOffsetParts.d.ts.map