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