import { TypeGenAddonFactory } from '../../typegen'; type InputFile = { fileName: string; content: string; }; declare class AddonTester { private readonly facory; private readonly options; constructor(facory: TypeGenAddonFactory, options: { tag?: string; }); generateTypes({ files, schemaSDL }: { files: InputFile[]; schemaSDL: string; }): { errors: import("../../errors").TsGqlError[]; outputSourceFiles: { fileName: string; content: string; }[]; }; } export declare function createAddonTester(factory: TypeGenAddonFactory, options?: { tag?: string; }): AddonTester; export {};