import * as pulumi from "@pulumi/pulumi";
/**
 * Get the custom domain ownership identifier for an API Management service.
 */
export declare function getApiManagementServiceDomainOwnershipIdentifier(args?: GetApiManagementServiceDomainOwnershipIdentifierArgs, opts?: pulumi.InvokeOptions): Promise<GetApiManagementServiceDomainOwnershipIdentifierResult>;
export interface GetApiManagementServiceDomainOwnershipIdentifierArgs {
}
/**
 * Response of the GetDomainOwnershipIdentifier operation.
 */
export interface GetApiManagementServiceDomainOwnershipIdentifierResult {
    /**
     * The domain ownership identifier value.
     */
    readonly domainOwnershipIdentifier: string;
}
/**
 * Get the custom domain ownership identifier for an API Management service.
 */
export declare function getApiManagementServiceDomainOwnershipIdentifierOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetApiManagementServiceDomainOwnershipIdentifierResult>;
