import { BaseComponent } from '../../Utilities';
import { IDialogProps } from './Dialog.Props';
export interface IDialogState {
    id?: string;
}
export declare class Dialog extends BaseComponent<IDialogProps, IDialogState> {
    static defaultProps: IDialogProps;
    constructor(props: IDialogProps);
    render(): JSX.Element;
    private _getAriaLabelId(ariaId, text, alternativeId);
}
