import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import Long from "long"; export declare const protobufPackage = "zitadel.application.v2"; export interface LoginVersion { /** Allow the user to sign in through the ZITADEL hosted login UI. */ loginV1?: LoginV1 | undefined; /** Allow the user to sign in though the new login UI or even your own UI by specifying a base_uri. */ loginV2?: LoginV2 | undefined; } export interface LoginV1 { } export interface LoginV2 { /** Optionally specify a base uri of the login UI. If unspecified the default URI will be used. */ baseUri?: string | undefined; } export declare const LoginVersion: MessageFns; export declare const LoginV1: MessageFns; export declare const LoginV2: 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 {};