import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "snapchat.lenses"; export interface BitmojiUserInfo { avatarId: string; selfieId: string; } export interface FriendUserInfo { friendshipStart: Date | undefined; lastInteraction: Date | undefined; streak: number; } export interface UserData { userId: string; username: string; birthdate: string; displayName: string; countrycode: string; score: string; bitmojiInfo: BitmojiUserInfo | undefined; friendInfo: FriendUserInfo | undefined; zodiac: UserData_Zodiac; } export declare enum UserData_Zodiac { Invalid = "Invalid", Aquarius = "Aquarius", Aries = "Aries", Cancer = "Cancer", Capricorn = "Capricorn", Gemini = "Gemini", Leo = "Leo", Libra = "Libra", Pisces = "Pisces", Sagittarius = "Sagittarius", Scorpio = "Scorpio", Taurus = "Taurus", Virgo = "Virgo", UNRECOGNIZED = "UNRECOGNIZED" } export declare function userData_ZodiacFromJSON(object: any): UserData_Zodiac; export declare function userData_ZodiacToNumber(object: UserData_Zodiac): number; export interface UserDataList { userData: UserData[]; } export declare const BitmojiUserInfo: MessageFns; export declare const FriendUserInfo: MessageFns; export declare const UserData: MessageFns; export declare const UserDataList: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends { $case: string; } ? { [K in keyof Omit]?: DeepPartial; } & { $case: T["$case"]; } : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {}; //# sourceMappingURL=user_data.d.ts.map