export declare class UserRepository {
    findById(id: string): {
        id: string;
        name: string;
    };
}
