import { Accessibility } from '@fluentui/accessibility'; import { ComponentWithAs } from '@fluentui/react-bindings'; import { FluentComponentStaticProps } from '../../types'; import { ChildrenComponentProps, UIComponentProps } from '../../utils'; export interface CardFooterProps extends UIComponentProps, ChildrenComponentProps { /** * Accessibility behavior if overridden by the user. */ accessibility?: Accessibility; /** A footer can be fitted, without any space above or below it. */ fitted?: boolean; } export declare type CardFooterStylesProps = Pick; export declare const cardFooterClassName = "ui-card__footer"; /** * A CardFooter is used to display data in Card component footer */ export declare const CardFooter: ComponentWithAs<'div', CardFooterProps> & FluentComponentStaticProps;