/** * Shared timezone options for Instantly API v2 campaigns * These values match the exact enum values expected by the API */ export interface ITimezoneOption { name: string; value: string; } export declare const TIMEZONE_OPTIONS: ITimezoneOption[]; /** * Default timezone for campaigns */ export declare const DEFAULT_TIMEZONE = "America/Chicago"; //# sourceMappingURL=timezoneOptions.d.ts.map