import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to access information about the tenant's branding settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myBranding = auth0.getBranding({}); * ``` */ export declare function getBranding(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getBranding. */ export interface GetBrandingResult { /** * Configuration settings for colors for branding. */ readonly colors: outputs.GetBrandingColor[]; /** * URL for the favicon. */ readonly faviconUrl: string; /** * Configuration settings to customize the font. */ readonly fonts: outputs.GetBrandingFont[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * URL of logo for branding. */ readonly logoUrl: string; /** * Configuration settings for Universal Login. */ readonly universalLogins: outputs.GetBrandingUniversalLogin[]; } /** * Use this data source to access information about the tenant's branding settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myBranding = auth0.getBranding({}); * ``` */ export declare function getBrandingOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;