export interface UserConfigShape { sqliteDb?: string; postgresUrl?: string; [key: string]: unknown; } interface LoadOptions { config: { rootDir: string; srcDirectories: string[]; }; logger: { error: (msg: string) => void; warn: (msg: string) => void; }; } export declare function loadUserConfigForDb(options: LoadOptions): Promise; export {};