import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const cardContentVariants: (props?: ({ cornerSize?: "md" | "lg" | null | undefined; variant?: "accent" | "default" | null | undefined; elevation?: "none" | "small" | "medium" | "large" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface CardContentProps extends VariantProps { className?: string; children: React.ReactNode; } declare const CardContent: { ({ children }: CardContentProps): React.JSX.Element; displayName: string; }; export { CardContent };