interface ResolvedPaths { configPath: string; rulesSource: string; error?: Error; } export declare function resolvePaths(configPath: string): Promise; export declare function printPaths(paths: ResolvedPaths): void; export {};