import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource allows you to manage branding themes for your Universal Login page within your Auth0 tenant. * * ## Import * * This resource can be imported by specifying the Branding Theme ID. * * Example: * * ```sh * $ pulumi import auth0:index/brandingTheme:BrandingTheme my_theme "XXXXXXXXXXXXXXXXXXXX" * ``` */ export declare class BrandingTheme extends pulumi.CustomResource { /** * Get an existing BrandingTheme resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BrandingThemeState, opts?: pulumi.CustomResourceOptions): BrandingTheme; /** * Returns true if the given object is an instance of BrandingTheme. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BrandingTheme; readonly borders: pulumi.Output; readonly colors: pulumi.Output; /** * The display name for the branding theme. */ readonly displayName: pulumi.Output; readonly fonts: pulumi.Output; readonly pageBackground: pulumi.Output; readonly widget: pulumi.Output; /** * Create a BrandingTheme resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BrandingThemeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BrandingTheme resources. */ export interface BrandingThemeState { borders?: pulumi.Input; colors?: pulumi.Input; /** * The display name for the branding theme. */ displayName?: pulumi.Input; fonts?: pulumi.Input; pageBackground?: pulumi.Input; widget?: pulumi.Input; } /** * The set of arguments for constructing a BrandingTheme resource. */ export interface BrandingThemeArgs { borders: pulumi.Input; colors: pulumi.Input; /** * The display name for the branding theme. */ displayName?: pulumi.Input; fonts: pulumi.Input; pageBackground: pulumi.Input; widget: pulumi.Input; }