import { TransformOptions } from 'esbuild'; declare const FILE_LOADERS: { readonly '.js': "js"; readonly '.jsx': "jsx"; readonly '.ts': "ts"; readonly '.tsx': "tsx"; readonly '.mjs': "js"; }; type EXTENSIONS = keyof typeof FILE_LOADERS; export declare function register(esbuildOptions?: TransformOptions & { extensions?: EXTENSIONS[]; include?: string[] | RegExp[]; }): void; export declare function revert(): void; export {}; //# sourceMappingURL=index.d.ts.map