import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplNotification implements ComponentInterface {
    /**
     * The text of the notification.
     */
    label: string;
    /**
     * Makes the notification visible.
     */
    show: boolean;
    render(): any;
    handleClick(event: MouseEvent): void;
}
