import { RabbitAddress } from "src/constants";
export declare const AuthenticationRabbitAPI: RabbitAddress;
export interface GetEwanoIdDto {
    userId: string;
}
export interface EwanoGetIdResponse {
    token: string;
    userId: string;
    telnum: string;
}
export declare class UserService {
    private readonly rabbit;
    getUserProfile(userId: string): Promise<EwanoGetIdResponse>;
}
export declare const UserRabbitModule: import("@nestjs/common").DynamicModule;
