export interface DepsInstallOptions { skipPrompts?: boolean; } export interface ConfigCreationResult { ok: boolean; created: boolean; } export interface DepsInstallResult { ok: boolean; packageJsonUpdated: boolean; installed: boolean; } export declare function createConfig(projectDir: string, log: (msg: string) => void): ConfigCreationResult; export declare function copyChecks(projectDir: string, log: (msg: string) => void): void; export declare function runDepsInstall(projectDir: string, log: (msg: string) => void, options?: DepsInstallOptions): Promise;