import { BannerSpec, HoistModel } from '@xh/hoist/core'; /** * Model for a single instance of a banner. Immutable. * @internal */ export declare class BannerModel extends HoistModel { xhImpl: boolean; category: any; icon: any; message: any; intent: any; sortOrder: any; className: any; enableClose: any; onClose: any; onClick: any; actionButtonProps: any; /** * Sort order for Hoist-provided banners. */ static BANNER_SORTS: { APP_UPDATE: number; ADMIN_ALERT: number; }; constructor(spec: BannerSpec); }