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. * * @cssprop {String} --dialog-footer-font-family - The footer font family CSS custom property. * @cssprop {String} --dialog-footer-font-letter-spacing - The footer font letter spacing CSS custom property. * @cssprop {String} --dialog-footer-font-line-height - The footer font line height CSS custom property. * @cssprop {String} --dialog-footer-font-size - The footer font size CSS custom property. * @cssprop {String} --dialog-footer-font-text-decoration - The footer font text decoration CSS custom property. * @cssprop {String} --dialog-footer-font-text-transform - The footer font text transform CSS custom property. * @cssprop {String} --dialog-footer-font-weight - The footer font weight CSS custom property. * @cssprop {String} --dialog-footer-gap - The footer gap CSS custom property. * @cssprop {String} --dialog-footer-padding-bottom - The footer padding bottom CSS custom property. * @cssprop {String} --dialog-footer-padding-left - The footer padding left CSS custom property. * @cssprop {String} --dialog-footer-padding-right - The footer padding right CSS custom property. * @cssprop {String} --dialog-footer-padding-top - The footer padding top CSS custom property. * @cssprop {String} --dialog-footer-shadow - The footer shadow CSS custom property. * @cssprop {String} --dialog-footer-shadow-blur - The footer shadow blur CSS custom property. * @cssprop {String} --dialog-footer-shadow-color - The footer shadow color CSS custom property. * @cssprop {String} --dialog-footer-shadow-offset-x - The footer shadow offset x CSS custom property. * @cssprop {String} --dialog-footer-shadow-offset-y - The footer shadow offset y CSS custom property. * @cssprop {String} --dialog-footer-shadow-spread - The footer shadow spread CSS custom property. * @cssprop {String} --dialog-footer-transition-duration - The footer transition duration CSS custom property. * @cssprop {String} --dialog-footer-transition-mode - The footer transition mode CSS custom property. * @cssprop {String} --dialog-footer-transition-property - The footer transition property CSS custom property. * @cssprop {String} --dialog-footer-translate - The footer translate CSS custom property. * * @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