/**
 * Kalshi Trade API Manual Endpoints
 * Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
 *
 * The version of the OpenAPI document: 3.6.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
export interface Announcement {
    /**
     * The type of the announcement.
     */
    'type': AnnouncementTypeEnum;
    /**
     * The message contained within the announcement.
     */
    'message': string;
    /**
     * The time the announcement was delivered.
     */
    'delivery_time': string;
    /**
     * The current status of this announcement.
     */
    'status': AnnouncementStatusEnum;
}
export declare const AnnouncementTypeEnum: {
    readonly Info: "info";
    readonly Warning: "warning";
    readonly Error: "error";
};
export type AnnouncementTypeEnum = typeof AnnouncementTypeEnum[keyof typeof AnnouncementTypeEnum];
export declare const AnnouncementStatusEnum: {
    readonly Active: "active";
    readonly Inactive: "inactive";
};
export type AnnouncementStatusEnum = typeof AnnouncementStatusEnum[keyof typeof AnnouncementStatusEnum];
