import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to access the HTML for the login, reset password, multi-factor authentication and error pages. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myPages = auth0.getPages({}); * ``` */ export declare function getPages(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getPages. */ export interface GetPagesResult { /** * Configuration settings for customizing the Password Reset page. */ readonly changePasswords: outputs.GetPagesChangePassword[]; /** * Configuration settings for the Error pages. */ readonly errors: outputs.GetPagesError[]; /** * Configuration settings for customizing the Guardian Multi-Factor Authentication page. */ readonly guardianMfas: outputs.GetPagesGuardianMfa[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Configuration settings for customizing the Login page. */ readonly logins: outputs.GetPagesLogin[]; } /** * Use this data source to access the HTML for the login, reset password, multi-factor authentication and error pages. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * const myPages = auth0.getPages({}); * ``` */ export declare function getPagesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;