export declare class ProjectConduitsStore { private readonly _repo; constructor(filePath?: string); get(projectId: string): Promise; set(projectId: string, conduit: string): Promise; remove(projectId: string): Promise; getAll(): Promise>; flush(): Promise; }