import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { SecurityConfig } from "../../common/protocol/headers"; export declare const protobufPackage = "xray.proxy.vmess"; export interface Account { $type: "xray.proxy.vmess.Account"; /** * ID of the account, in the form of a UUID, e.g., * "66ad4540-b58c-4ad2-9926-ea63445a9b57". */ id: string; /** Security settings. Only applies to client side. */ securitySettings: SecurityConfig | undefined; /** Define tests enabled for this account */ testsEnabled: string; } export declare const Account: 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 {} ? { [K in Exclude]?: DeepPartial; } : Partial; export interface MessageFns { readonly $type: V; encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create(base?: DeepPartial): T; fromPartial(object: DeepPartial): T; } export {}; //# sourceMappingURL=account.d.ts.map