export declare class UserRepository {
    private readonly postgres;
    constructor();
    getUser(userId: string): Promise<any>;
}
