import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import Long from "long"; export declare const protobufPackage = "zitadel.user.v2"; export interface SetHumanEmail { email: string; sendCode?: SendEmailVerificationCode | undefined; returnCode?: ReturnEmailVerificationCode | undefined; isVerified?: boolean | undefined; } export interface HumanEmail { email: string; isVerified: boolean; } export interface SendEmailVerificationCode { /** * Optionally set a url_template, which will be used in the verification mail sent by ZITADEL to guide the user to your verification page. * If no template is set, the default ZITADEL url will be used. * * The following placeholders can be used: UserID, OrgID, Code */ urlTemplate?: string | undefined; } export interface ReturnEmailVerificationCode { } export declare const SetHumanEmail: MessageFns; export declare const HumanEmail: MessageFns; export declare const SendEmailVerificationCode: MessageFns; export declare const ReturnEmailVerificationCode: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export interface MessageFns { 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 {};