import { type BinaryVersions } from '@fuel-ts/versions';
import type { ProgramTypeEnum } from './types/enums/ProgramTypeEnum';
export interface IGenerateFilesParams {
    cwd: string;
    filepaths?: string[];
    inputs?: string[];
    output: string;
    silent?: boolean;
    programType: ProgramTypeEnum;
    versions?: BinaryVersions;
}
export declare function runTypegen(params: IGenerateFilesParams): void;
//# sourceMappingURL=runTypegen.d.ts.map