/** * Card Component * * Container with border and optional title */ import type React from 'react'; import type { ReactNode } from 'react'; export interface CardProps { children: ReactNode; title?: string; width?: number | string; borderColor?: string; padding?: number; } export declare function Card({ children, title, width, borderColor, padding }: CardProps): React.ReactElement; //# sourceMappingURL=Card.d.ts.map