/** * CORS Configuration * * Provides CORS configuration for the API server. * Default: localhost-only origins. Set TX_API_CORS_ORIGIN="*" for wildcard (not recommended in production). */ export declare const getCorsConfig: () => { allowedOrigins: string[]; allowedMethods: readonly ["GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"]; allowedHeaders: string[]; exposedHeaders: string[]; maxAge: number; credentials: boolean; }; //# sourceMappingURL=cors.d.ts.map