import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import Long from "long"; import { ResourceOwnerType } from "./settings.js"; export declare const protobufPackage = "zitadel.settings.v2"; export interface LegalAndSupportSettings { /** Link to the Terms of Service. Can be a relative or absolute URL. */ tosLink: string; /** Link to the Privacy Policy. Can be a relative or absolute URL. */ privacyPolicyLink: string; /** Link to a help page. Can be a relative or absolute URL. */ helpLink: string; /** Email address for support issues. */ supportEmail: string; /** * ResourceOwnerType returns if the setting is managed on the organization explicitly or * fell back on the instance settings. */ resourceOwnerType: ResourceOwnerType; /** Link to documentation to be shown in the console. */ docsLink: string; /** Link to an external resource that will be available to users in the console. */ customLink: string; /** The button text that would be shown in console pointing to custom link. */ customLinkText: string; } export declare const LegalAndSupportSettings: 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 {};