import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to access information about the tenant's branding theme settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myBrandingTheme = auth0.getBrandingTheme({}); * ``` */ export declare function getBrandingTheme(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getBrandingTheme. */ export interface GetBrandingThemeResult { readonly borders: outputs.GetBrandingThemeBorder[]; readonly colors: outputs.GetBrandingThemeColor[]; /** * The display name for the branding theme. */ readonly displayName: string; readonly fonts: outputs.GetBrandingThemeFont[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly pageBackgrounds: outputs.GetBrandingThemePageBackground[]; readonly widgets: outputs.GetBrandingThemeWidget[]; } /** * Use this data source to access information about the tenant's branding theme settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myBrandingTheme = auth0.getBrandingTheme({}); * ``` */ export declare function getBrandingThemeOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;