import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ISheetFooterElementProps } from './ISheetFooterElementProps'; declare const SheetFooterElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * SheetFooter - The footer section within a bottom sheet. * * @description * Provides a footer area for action buttons or supplementary content. * Place this element in the `footer` slot of `mosaik-sheet`. * * @name SheetFooter * @element mosaik-sheet-footer * @category Overlays * * @slot - The default content slot. * * @cssprop {String} --sheet-footer-font-family - The footer font family CSS custom property. * @cssprop {String} --sheet-footer-font-letter-spacing - The footer font letter spacing CSS custom property. * @cssprop {String} --sheet-footer-font-line-height - The footer font line height CSS custom property. * @cssprop {String} --sheet-footer-font-size - The footer font size CSS custom property. * @cssprop {String} --sheet-footer-font-text-decoration - The footer font text decoration CSS custom property. * @cssprop {String} --sheet-footer-font-text-transform - The footer font text transform CSS custom property. * @cssprop {String} --sheet-footer-font-weight - The footer font weight CSS custom property. * @cssprop {String} --sheet-footer-gap - The footer gap CSS custom property. * @cssprop {String} --sheet-footer-padding-bottom - The footer padding bottom CSS custom property. * @cssprop {String} --sheet-footer-padding-left - The footer padding left CSS custom property. * @cssprop {String} --sheet-footer-padding-right - The footer padding right CSS custom property. * @cssprop {String} --sheet-footer-padding-top - The footer padding top CSS custom property. * @cssprop {String} --sheet-footer-shadow - The footer shadow CSS custom property. * @cssprop {String} --sheet-footer-shadow-blur - The footer shadow blur CSS custom property. * @cssprop {String} --sheet-footer-shadow-color - The footer shadow color CSS custom property. * @cssprop {String} --sheet-footer-shadow-offset-x - The footer shadow offset x CSS custom property. * @cssprop {String} --sheet-footer-shadow-offset-y - The footer shadow offset y CSS custom property. * @cssprop {String} --sheet-footer-shadow-spread - The footer shadow spread CSS custom property. * @cssprop {String} --sheet-footer-transition-duration - The footer transition duration CSS custom property. * @cssprop {String} --sheet-footer-transition-mode - The footer transition mode CSS custom property. * @cssprop {String} --sheet-footer-transition-property - The footer transition property CSS custom property. * @cssprop {String} --sheet-footer-translate - The footer translate CSS custom property. * * @example * Sheet footer with action button: * ```html * * Done * * ``` * * @public */ export declare class SheetFooterElement extends SheetFooterElement_base implements ISheetFooterElementProps, 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 SheetFooterElement { type Props = ISheetFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-sheet-footer': SheetFooterElement; } } export {}; //# sourceMappingURL=SheetFooterElement.d.ts.map