import { ElementRef } from '@angular/core';
import { MdcButton } from '@angular-mdc/web/button';
export declare class MdcDialogAction {
    elementRef: ElementRef<HTMLElement>;
    get action(): string;
    set action(action: string);
    private _action;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogScrim {
    elementRef: ElementRef<HTMLElement>;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogContainer {
    elementRef: ElementRef<HTMLElement>;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogSurface {
    elementRef: ElementRef<HTMLElement>;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogTitle {
    elementRef: ElementRef<HTMLElement>;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogContent {
    elementRef: ElementRef<HTMLElement>;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogActions {
    elementRef: ElementRef<HTMLElement>;
    get stacked(): boolean;
    set stacked(value: boolean);
    private _stacked;
    constructor(elementRef: ElementRef<HTMLElement>);
}
export declare class MdcDialogButton extends MdcButton {
    get default(): boolean;
    set default(value: boolean);
    private _default;
}
