export declare abstract class Repository { abstract create(object: Partial): Promise; abstract findAll(): Promise; abstract findOne(id: string): Promise; abstract update(id: string, object: Partial): Promise; abstract remove(id: string): Promise; }