import { DocType, ValidationResult } from './types/docTypes.js';
/**
 * Validate project root path for security and correctness
 */
export declare function validateProjectRoot(projectRoot: string): ValidationResult;
/**
 * Validate document type against allowed types
 */
export declare function validateDocType(type: string): ValidationResult;
/**
 * Get the .soloflow directory path for a project
 */
export declare function getSoloflowPath(projectRoot: string): string;
/**
 * Get the full path for a specific document
 */
export declare function getDocumentPath(projectRoot: string, type: DocType): string;
/**
 * Ensure .soloflow directory exists
 */
export declare function ensureSoloflowDirectory(projectRoot: string): Promise<void>;
//# sourceMappingURL=context.d.ts.map