export interface InitOptions { name?: string; multiCommandSet?: boolean; output?: string; withConfig?: boolean; } export interface InitResult { contractFile: string; configFile?: string; } export declare function runInit(options: InitOptions): Promise; export declare class FileExistsError extends Error { readonly filePath: string; constructor(filePath: string); } //# sourceMappingURL=init.d.ts.map