/** * Start and End dates for active alert */ export declare class ActivePeriod { /** * Start Date. Format is ISO8601. */ start: string | undefined | null; /** * End Date. Format is ISO8601. */ end: string | undefined | null; }