import * as React from "react"; import type { CardContentOwnProps } from "./types"; import type { PolymorphicWithRef } from "../types"; declare type CardContentProps = PolymorphicWithRef; declare type CardContentElement = (props: CardContentProps) => React.ReactElement>; declare const CardContent: CardContentElement; export default CardContent; //# sourceMappingURL=CardContent.d.ts.map