import { Bus } from "./Bus.js"; declare module "./Bus" { interface Events { "pothos.extracted": { file: string; }; } } interface Opts { bus: Bus; } export declare function createPothosBuilder(opts: Opts): void; export {};