/**
 * Supported document types for SoloFlow MCP service
 * All documents are stored in .soloflow/ directory with .md extension
 */
export declare const DOC_TYPES: readonly ["overview", "requirements", "system_architecture", "test_strategy", "ui_design", "tasks", "deployment", "notes"];
export type DocType = typeof DOC_TYPES[number];
/**
 * Validation result for project root and document type validation
 */
export interface ValidationResult {
    isValid: boolean;
    error?: string;
}
/**
 * Document summary information returned by list operation
 */
export interface DocumentSummary {
    type: DocType;
    name: string;
    title?: string;
    lastUpdated: Date;
}
//# sourceMappingURL=docTypes.d.ts.map