import { DDSElement } from "../../base/index.js"; /** * `daikin-modal-header` is used to represent header of the modal component, and is used as a child element of the `daikin-modal` component. * * Hierarchy: * - `daikin-modal` > `daikin-modal-header` * * @slot description - An optional slot for description. * @slot - A slot for modal title. * * @example * * ```js * import "@daikin-oss/design-system-web-components/components/modal-header/index.js"; * ``` * * ```html * * * Description * Modal Title * * ``` */ export declare class DaikinModalHeader extends DDSElement { static styles: import('lit').CSSResult; /** * Whether the modal is open. */ withCloseButton: boolean; private _closeButton; private _handleClick; render(): import('lit-html').TemplateResult<1>; /** * Focuses on the header content area. */ focusCloseButton(): void; } declare global { interface HTMLElementTagNameMap { "daikin-modal-header": DaikinModalHeader; } }