/// <reference types="react" />
import './dialog.scss';
/**
 * @specs https://m3.material.io/components/dialogs/specs#bbf1acde-f8d2-4ae1-9d51-343e96c4ac20
 */
export declare const FullScreenDialog: import("react").ForwardRefExoticComponent<{
    headline?: React.ReactNode;
    /**
     * The button's child node inside the top area
     */
    button?: React.ReactNode;
    /**
     * Fires when the close icon button is click
     */
    onCloseClick?: (() => void) | undefined;
    children?: React.ReactNode;
    footer?: React.ReactNode;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "button" | "footer" | "headline" | "onCloseClick"> & import("react").RefAttributes<HTMLDivElement>>;
