import { type BellwetherConfig } from '../../config/validator.js'; export interface DashboardConfigDocument { absolutePath: string; workspacePath: string; exists: boolean; content: string; } export interface DashboardConfigValidationResult { valid: boolean; warnings: string[]; config: BellwetherConfig; } export declare function resolveWorkspacePath(cwd: string, targetPath: string): string; export declare function resolveConfigPath(cwd: string, explicitPath?: string): string; export declare function getConfigDocument(cwd: string, explicitPath?: string): DashboardConfigDocument; export declare function saveConfigDocument(cwd: string, explicitPath: string | undefined, content: string): DashboardConfigDocument; export declare function validateConfigSource(cwd: string, options: { path?: string; content?: string; }): DashboardConfigValidationResult; //# sourceMappingURL=config-service.d.ts.map