export declare function resolve(specifier: string, context: { parentURL?: string; }, nextResolve: (specifier: string, context: { parentURL?: string; }) => { url: string; }): { url: string; }; interface LoadResult { format: string; source?: string | ArrayBuffer | NodeJS.TypedArray; shortCircuit?: boolean; } export declare function load(url: string, context: { format?: string | null | undefined; }, nextLoad: (url: string, context: { format?: string | null | undefined; }) => LoadResult | Promise): Promise; export {}; //# sourceMappingURL=ts-resolve-hooks.d.ts.map