import type { AllHTMLAttributes, CSSProperties, ReactNode } from 'react'; import { type BoxProps } from '../Box'; export type CardBodyProps = { flexDirection?: CSSProperties['flexDirection']; height?: BoxProps['height']; children: ReactNode; } & Omit, 'is'>; declare const CardBody: ({ children, flexDirection, height, ...props }: CardBodyProps) => import("react/jsx-runtime").JSX.Element; export default CardBody; //# sourceMappingURL=CardBody.d.ts.map