import * as pulumi from "@pulumi/pulumi"; /** * Get the verification id of a subscription used for verifying custom domains * * Uses Azure REST API version 2025-02-02-preview. * * Other available API versions: 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-07-01, 2025-10-02-preview, 2026-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getCustomDomainVerificationId(args?: GetCustomDomainVerificationIdArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCustomDomainVerificationIdArgs { } /** * Custom domain verification Id of a subscription */ export interface GetCustomDomainVerificationIdResult { readonly value?: string; } /** * Get the verification id of a subscription used for verifying custom domains * * Uses Azure REST API version 2025-02-02-preview. * * Other available API versions: 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview, 2025-01-01, 2025-07-01, 2025-10-02-preview, 2026-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native app [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getCustomDomainVerificationIdOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;