import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDialogFooterElementProps } from './IDialogFooterElementProps'; declare const DialogFooterElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DialogFooter - The footer section within a dialog. * * @description * Provides a footer area for supplementary information or secondary actions in a dialog. * Place this element in the `footer` slot of `mosaik-dialog`. * * @name DialogFooter * @element mosaik-dialog-footer * @category Overlays * * @slot - The default content slot. * @slot prefix - The prefix slot. * @slot suffix - The suffix slot. * * @example * Dialog footer with additional info: * ```html * * This action cannot be undone. * * ``` * * @public */ export declare class DialogFooterElement extends DialogFooterElement_base implements IDialogFooterElementProps, ISlottable { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace DialogFooterElement { type Props = IDialogFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-dialog-footer': DialogFooterElement; } } export {}; //# sourceMappingURL=DialogFooterElement.d.ts.map