export declare class SpecArchiveService { private projectPath; constructor(projectPath: string); archiveSpec(specName: string): Promise; unarchiveSpec(specName: string): Promise; isSpecActive(specName: string): Promise; isSpecArchived(specName: string): Promise; getSpecLocation(specName: string): Promise<'active' | 'archived' | 'not-found'>; } //# sourceMappingURL=archive-service.d.ts.map