import { AutoprofileSettings } from 'dprx-types'; import { DogExt } from '../..'; export declare class DogAutoprofile { static start({ dogExt, roomId, profileSettings, }: { dogExt: DogExt; roomId: string; profileSettings: AutoprofileSettings; }): Promise<{ result: any; }>; static getUniqUsername({ username }: { username: string; }): Promise<{ result: string; }>; static uploadProfilePhoto({ phone, filepath, datetime }: { phone: string; filepath: string; datetime: Date; }): Promise<{ result: any; }>; }