import { StructureSchema } from '@ephox/boulder'; import type { Result } from '@ephox/katamari'; export interface AlertBannerSpec { type: 'alertbanner'; level: 'info' | 'warn' | 'error' | 'success'; text: string; icon: string; url?: string; } export interface AlertBanner { type: 'alertbanner'; level: 'info' | 'warn' | 'error' | 'success'; text: string; icon: string; url: string; } export declare const alertBannerSchema: import("@ephox/boulder").StructureProcessor; export declare const createAlertBanner: (spec: AlertBannerSpec) => Result>; //# sourceMappingURL=AlertBanner.d.ts.map