import type { UserConfig, ParsedPRD, ResearchResults, DeploymentConfig } from '../types.js'; /** * Research a project idea comprehensively before PRD generation * Returns structured research including tech versions, complexity assessment, and best practices */ export declare function researchProjectIdea(config: UserConfig, idea: string): Promise; export declare function generateInitialPRD(config: UserConfig, idea: string, projectName?: string, research?: ResearchResults, deployment?: DeploymentConfig): Promise; export declare function refinePRD(config: UserConfig, currentPRD: string, feedback: string): Promise; export declare function formatWithRPGTemplate(config: UserConfig, rawPRD: string, projectName?: string): Promise; export declare function extractPRDSummary(prd: string): string; //# sourceMappingURL=prd-creator.d.ts.map