import { ReactNode, ComponentProps } from 'react'; export declare const cardVariants: (props?: ({ variant?: "shadow" | "tonal" | "outline" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type CardVariants = 'shadow' | 'outline' | 'tonal'; export type CardProps = ComponentProps<'div'> & { children: ReactNode; variant?: CardVariants; }; //# sourceMappingURL=types.d.ts.map