/** * ralph-starter figma — Interactive Figma-to-code wizard * * Guides the user through 4 steps: * 1. Figma design URL * 2. Task description * 3. Tech stack selection (auto-detect + list + custom) * 4. Model selection (smart per-agent dropdown) */ interface FigmaWizardOptions { mode?: string; framework?: string; commit?: boolean; validate?: boolean; maxIterations?: number; agent?: string; } export declare function figmaCommand(options: FigmaWizardOptions): Promise; export {}; //# sourceMappingURL=figma.d.ts.map