import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ICardFooterElementProps } from './ICardFooterElementProps'; declare const CardFooterElement_base: (abstract new (...args: Array) => import("../../../../Controls/Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../../Controls/Behaviors/Themeable").IThemeableCtor; /** * CardFooter - A component that represents the footer section of a card. * * @description This component is used to display the footer content of a card, typically containing action buttons or additional information relevant to the card's main content. * * @name CardFooter * @element mosaik-card-footer * @category UI Components * * @slot - The default slot for placing content within the card footer. * * @cssprop {String} --card-footer-font-family - The footer font family CSS custom property. * @cssprop {String} --card-footer-font-letter-spacing - The footer font letter spacing CSS custom property. * @cssprop {String} --card-footer-font-line-height - The footer font line height CSS custom property. * @cssprop {String} --card-footer-font-size - The footer font size CSS custom property. * @cssprop {String} --card-footer-font-text-decoration - The footer font text decoration CSS custom property. * @cssprop {String} --card-footer-font-text-transform - The footer font text transform CSS custom property. * @cssprop {String} --card-footer-font-weight - The footer font weight CSS custom property. * @cssprop {String} --card-footer-gap - The gap property between elements in the card footer. * @cssprop {String} --card-footer-padding-bottom - The padding-bottom property for the card footer. * @cssprop {String} --card-footer-padding-left - The padding-left property for the card footer. * @cssprop {String} --card-footer-padding-right - The padding-right property for the card footer. * @cssprop {String} --card-footer-padding-top - The padding-top property for the card footer. * @cssprop {String} --card-footer-shadow - The footer shadow CSS custom property. * @cssprop {String} --card-footer-shadow-blur - The footer shadow blur CSS custom property. * @cssprop {String} --card-footer-shadow-color - The footer shadow color CSS custom property. * @cssprop {String} --card-footer-shadow-offset-x - The footer shadow offset x CSS custom property. * @cssprop {String} --card-footer-shadow-offset-y - The footer shadow offset y CSS custom property. * @cssprop {String} --card-footer-shadow-spread - The footer shadow spread CSS custom property. * @cssprop {String} --card-footer-transition-duration - The footer transition duration CSS custom property. * @cssprop {String} --card-footer-transition-mode - The footer transition mode CSS custom property. * @cssprop {String} --card-footer-transition-property - The footer transition property CSS custom property. * @cssprop {String} --card-footer-translate - The footer translate CSS custom property. * * @example * ```html * * * * * ``` * * @public */ export declare class CardFooterElement extends CardFooterElement_base implements ICardFooterElementProps, 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 CardFooterElement { type Props = ICardFooterElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-footer': CardFooterElement; } } export {}; //# sourceMappingURL=CardFooterElement.d.ts.map