import { Context, Next } from 'koa'; export declare namespace Cors { type Options = '*' | string[]; } export declare const Cors: { create: typeof create; }; declare function create(allowedOrigins?: '*' | string[]): (ctx: Context, next: Next) => Promise; export {}; //# sourceMappingURL=cors.d.ts.map