export interface InitOptions { readonly cwd: string; readonly outputName?: string; readonly importExisting?: boolean; } export interface InitResult { readonly configPath: string; readonly imported: number; readonly skipped: boolean; } export declare function initConfig(opts: InitOptions): Promise; //# sourceMappingURL=init.d.ts.map