import { Resource } from './resource.model';
export declare class Announcement extends Resource {
    /**
     * The content of the announcement.
     */
    content: string;
    /**
     * Whether it's a maintenance announcement; if so, the use of the service is temporarily blocked.
     */
    maintenance?: boolean;
    load(x: any): void;
}
