import { TemplateResult } from 'lit'; import CovalentDialog from '../dialog/dialog'; import '../focused-page/focused-page'; /** * Full-screen Dialog * * @slot - This element has a slot */ export declare class CovalentFullscreenDialog extends CovalentDialog { static styles: import("lit").CSSResult[]; /** * Whether the help section is open or not */ helpOpen: boolean; /** * Whether the help section is resizable */ helpResizable: boolean; /** * Since the default, action slots of mdc-dialog have been replaced with the focused page component, * override this method to return focused page as the initial focus element */ protected getInitialFocusEl(): HTMLElement | null; protected render(): TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cv-full-screen-dialog': CovalentFullscreenDialog; } } export default CovalentFullscreenDialog; //# sourceMappingURL=full-screen-dialog.d.ts.map