import { type ConversionStats } from './utils/conversion-stats';
declare function generateWrekenfile(spec: any, baseDir: string): string;
/**
 * Generate a Wrekenfile and return both the YAML string and conversion stats.
 * Use this when you need visibility into what was converted and potential issues.
 */
declare function generateWrekenfileWithStats(spec: any, baseDir: string): {
    yaml: string;
    stats: ConversionStats;
};
export { generateWrekenfile, generateWrekenfileWithStats };
//# sourceMappingURL=openapi-to-wreken.d.ts.map