import { AbstractCall, BaseRequestPayload, BaseResponsePayload } from "../../../src/AbstractCall"; import { Service } from "../../../src/Service"; export declare class DBRegistrationCall extends AbstractCall { getRequestName(): string; getService(): Service; } export declare module DBRegistrationCall { const NAME = "DB_REGISTRATION_CALL"; interface RequestModel extends BaseRequestPayload { email: string; username: string; name: string; surname: string; hash?: string; profile_image?: string; firebase_id?: any; } interface ResponseModel extends BaseResponsePayload { user_id: any; } }