export type Industry = 'ecommerce' | 'banking' | 'fintech' | 'healthcare' | 'pharma' | 'agriculture' | 'legacy-enterprise' | 'saas' | 'unknown'; export interface DomainProfile { industry: Industry; confidence: number; importantScreenPatterns: string[]; workflowGoals: string[]; piiRules: string[]; riskyActions: string[]; safeProbeRules: string[]; requiredArtifacts: string[]; evidence: string[]; } export declare function classifyDomainProfile(input: { appUrl: string; projectName?: string | null; appType?: string | null; seedText?: string; }): DomainProfile; export declare function getProfile(industry: Industry): DomainProfile;