import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`. */ export declare function getPhoneNotificationTemplate(args: GetPhoneNotificationTemplateArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPhoneNotificationTemplate. */ export interface GetPhoneNotificationTemplateArgs { /** * The ID of the Phone Notification Template. */ templateId: string; } /** * A collection of values returned by getPhoneNotificationTemplate. */ export interface GetPhoneNotificationTemplateResult { /** * The channel of the phone notification template (e.g., `sms`, `voice`). */ readonly channel: string; /** * The content of the phone notification template. */ readonly contents: outputs.GetPhoneNotificationTemplateContent[]; /** * Indicates whether the phone notification template is customizable. */ readonly customizable: boolean; /** * Indicates whether the phone notification template is disabled. */ readonly disabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The ID of the Phone Notification Template. */ readonly templateId: string; /** * The tenant of the phone notification template. */ readonly tenant: string; /** * The type of the phone notification template. */ readonly type: string; } /** * Data source to retrieve a specific Auth0 Phone Notification Template by `templateId`. */ export declare function getPhoneNotificationTemplateOutput(args: GetPhoneNotificationTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPhoneNotificationTemplate. */ export interface GetPhoneNotificationTemplateOutputArgs { /** * The ID of the Phone Notification Template. */ templateId: pulumi.Input; }