/** * Get timezone offset string in format "+HH:mm" or "-HH:mm" * @param {Date} instance - The date object to get timezone offset from * @return {string} - The timezone offset string (e.g. "+09:00" for JST) */ export declare const getTimezoneOffsetString: (instance: Date) => string;