import { LitElement } from "lit"; declare const WarpModalFooter_base: import("../modal/util.js").Constructor<{ close: () => void; }> & import("../modal/util.js").Constructor<{ handleSlotChange: (evt: Event) => void; }> & typeof LitElement; /** * The footer section of a modal, typically where you place actions. * * [Warp component reference](https://warp-ds.github.io/docs/components/modal/frameworks/elements) * * @parent w-modal * * @csspart footer - the container for slotted items (children). * * @cssprop --w-c-modal-footer-gap - adjusts the flex gap between actions in the footer. */ export declare class WarpModalFooter extends WarpModalFooter_base { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } /** @deprecated Exported for backwards compatibility. Use WarpModalFooter. */ export declare const ModalFooter: typeof WarpModalFooter; declare global { interface HTMLElementTagNameMap { "w-modal-footer": WarpModalFooter; } } export {};