import { RequestHandler } from 'express'; import { PolyfillFeatureList } from 'polyfill-library'; export declare type PolyfillOptions = { minify: boolean; unknown: 'polyfill' | 'ignore'; features: PolyfillFeatureList; excludes: string[]; uaString: string; rum: boolean; }; declare function getRouter(opts?: Partial): RequestHandler; export declare const Polyfill: { getRouter: typeof getRouter; }; export {};