import React, { CSSProperties } from 'react';
import './cardBody.less';
import { ButtonProps } from '../../Button';
import { CardLinkType } from '../_utils';
export type CardBodyProps = {
    bodyTitle?: string;
    description?: string;
    image?: {
        src: string;
        style?: CSSProperties;
    };
    caption?: string;
    mainLink?: CardLinkType;
    secondLink?: CardLinkType;
    button?: ButtonProps;
};
declare const CardBody: React.FC<CardBodyProps>;
export { CardBody, };
//# sourceMappingURL=cardBody.d.ts.map