export interface CorsOptions { origin?: string; methods?: string; headers?: string; exposeHeaders?: string; maxAge?: number; credentials?: boolean; } declare const cors: (options: CorsOptions) => (_req: any, res: any, next: () => void) => void; export default cors;