export * from './industry-benchmarks.js';
export type IndustryType = 'financial_services' | 'healthcare' | 'retail' | 'manufacturing' | 'technology' | 'education' | 'government' | 'other';
export declare function getBenchmarks(industry: IndustryType): Promise<{
    automationSavings: {
        percentage: number;
        confidence: number;
    };
    errorReduction: {
        percentage: number;
        confidence: number;
    };
    implementationTimeline: {
        typicalMonths: number;
        confidence: number;
    };
    projectTypes: never[];
}>;
//# sourceMappingURL=index.d.ts.map