import type { IBaseCardProps } from '../BaseCard.types'; import type { JSXElement } from '@fluentui/utilities'; export interface ICardCalloutProps extends Omit, 'content'> { finalHeight?: number; content?: JSXElement; } export declare const CardCallout: (props: ICardCalloutProps) => JSXElement | null;