/** * RecourseOS Gateway Doctor * * Verifies gateway enforcement configuration and runs self-tests * to ensure the gateway is properly hardened before production use. * * Run: recourse gateway doctor -e prod */ import { type Environment } from './types.js'; export interface DoctorOptions { environment: Environment; policyFile?: string; jsonOutput?: boolean; } export declare function runGatewayDoctor(options: DoctorOptions): Promise; //# sourceMappingURL=doctor.d.ts.map