import { IconName } from '../../global/shared-types/icon.types'; /** * @exampleComponent limel-example-banner-basic * @slot buttons - Buttons to show in the banner */ export declare class Banner { /** * The text to show on the banner. */ message: string; /** * Set icon for the banner */ icon: IconName; private isOpen; /** * Open the banner */ open(): Promise; /** * Close the banner */ close(): Promise; render(): any; private renderIcon; } //# sourceMappingURL=banner.d.ts.map