import type { Middleware } from './types.js'; export interface CorsOptions { origins: string[] | '*'; methods?: string[]; headers?: string[]; credentials?: boolean; } export declare function createCorsMiddleware(options: CorsOptions): Middleware; //# sourceMappingURL=cors.d.ts.map