import { DDSElement } from "../../base/index.cjs"; /** * `daikin-modal-footer` is used to represent footer of the modal component, and is used as a child element of the `daikin-modal` component. * * Hierarchy: * - `daikin-modal` > `daikin-modal-footer` * * @slot A slot for modal footer action element. Place a `daikin-button` or `daikin-link` element here. * * @example * * ```js * import "@daikin-oss/design-system-web-components/components/modal-footer/index.js"; * ``` * * ```html * * * * Button * * * ``` */ export declare class DaikinModalFooter extends DDSElement { static styles: import('lit').CSSResult; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "daikin-modal-footer": DaikinModalFooter; } }