import { type EventEmitter } from '../../stencil-public-runtime'; type AlertColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger'; /** * @Slot - alert content */ export declare class PAlert { type?: AlertColor; /** Show close icon */ closable?: boolean; /** * Force dark or light mode. If not provided, the component follows * the browser preference (`prefers-color-scheme`). */ dark?: boolean; private isDark; private darkController; componentWillLoad(): void; disconnectedCallback(): void; onDarkChange(): void; close: EventEmitter; getClass(): string; getParentClass(): string; closeAlert(): void; render(): any; } export {};