/** * Card Component * Renders data as cards with key-value pairs */ import { UIComponent, ComponentProps } from '../types'; export declare class CardComponent implements UIComponent { supportsFormat(_format: 'cli' | 'mcp' | 'web'): boolean; render(props: ComponentProps): string | object; private renderCLI; private renderMCP; private renderWeb; } //# sourceMappingURL=card.d.ts.map