import { default as React } from 'react'; export type CardPadding = 'none' | 'sm' | 'md' | 'lg'; export type CardRadius = 'sm' | 'md' | 'lg'; export interface CardProps { children: React.ReactNode; padding?: CardPadding; radius?: CardRadius; bordered?: boolean; className?: string; } export declare function Card({ children, padding, radius, bordered, className, }: CardProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Card.d.ts.map