import { GoveeAPIResponse } from '../../govee-api.models';
export declare class ClientData {
    A?: string;
    B?: string;
    topic: string;
    accessToken: string;
    refreshToken: string;
    tokenExpireCycle: number;
    clientId: string;
    accountId: string;
    pushToken?: string;
    versionCode?: string;
    versionName?: string;
    sysVersion?: string;
    isSavvyUser?: boolean;
}
export declare class LoginResponse extends GoveeAPIResponse {
    client: ClientData;
}
export declare class CommunityAuth {
    token: string;
    headerUrl?: string;
    nickName?: string;
    accountId: string;
    expiresAt: number;
    emailAddress: string;
}
export declare class CommunityLoginResponse extends GoveeAPIResponse {
    community: CommunityAuth;
}
//# sourceMappingURL=login.response.d.ts.map