import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Data source to retrieve a specific Auth0 prompt screen settings by `promptType` and `screenName` */ export declare function getPromptScreenRenderer(args: GetPromptScreenRendererArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPromptScreenRenderer. */ export interface GetPromptScreenRendererArgs { /** * The type of prompt to customize. */ promptType: string; /** * The screen name associated with the prompt type. */ screenName: string; } /** * A collection of values returned by getPromptScreenRenderer. */ export interface GetPromptScreenRendererResult { /** * Context values to make available */ readonly contextConfigurations: string[]; /** * Override Universal Login default head tags */ readonly defaultHeadTagsDisabled: boolean; /** * Optional filters to apply rendering rules to specific entities. `matchType` and at least one of the entity arrays are required. */ readonly filters: outputs.GetPromptScreenRendererFilter[]; /** * An array of head tags */ readonly headTags: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The type of prompt to customize. */ readonly promptType: string; /** * Rendering modeOptions are: `standard`, `advanced`. */ readonly renderingMode: string; /** * The screen name associated with the prompt type. */ readonly screenName: string; /** * Tenant ID */ readonly tenant: string; /** * Use page template with ACUL */ readonly usePageTemplate: boolean; } /** * Data source to retrieve a specific Auth0 prompt screen settings by `promptType` and `screenName` */ export declare function getPromptScreenRendererOutput(args: GetPromptScreenRendererOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPromptScreenRenderer. */ export interface GetPromptScreenRendererOutputArgs { /** * The type of prompt to customize. */ promptType: pulumi.Input; /** * The screen name associated with the prompt type. */ screenName: pulumi.Input; }