import type { FunctionComponent, ReactNode } from 'react'; import type { BaseProps, ExcludeStrict, ForwardProps } from '../../types'; import type { FlexProps } from '../Flex'; export interface CardContentProps extends BaseProps { /** The content of the Card. */ children: ReactNode; container?: ExcludeStrict; } export declare const StyledCardContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; declare const CardContent: FunctionComponent; export default CardContent; //# sourceMappingURL=CardContent.d.ts.map