import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplDialog implements ComponentInterface {
    /**
     * The title of the dialog.
     */
    heading: string;
    /**
     * Controls the visibility of the dialog.
     */
    open: boolean;
    /**
     * Dismisses the dialog by clicking on the backdrop.
     */
    dismissable: boolean;
    render(): any;
    dismiss(): void;
    handleClick(event: MouseEvent): void;
}
