/** * Form Component * Renders interactive forms for input collection */ import { UIComponent, ComponentProps } from '../types'; export declare class FormComponent implements UIComponent { supportsFormat(_format: 'cli' | 'mcp' | 'web'): boolean; render(props: ComponentProps): string | object; private renderCLI; collectInput(schema: any): Promise; private getInputType; private renderMCP; private renderWeb; } //# sourceMappingURL=form.d.ts.map