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