import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::SMSVOICE::ProtectConfiguration
 */
export declare function getProtectConfiguration(args: GetProtectConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetProtectConfigurationResult>;
export interface GetProtectConfigurationArgs {
    /**
     * The unique identifier for the protect configuration.
     */
    protectConfigurationId: string;
}
export interface GetProtectConfigurationResult {
    /**
     * The Amazon Resource Name (ARN) of the protect configuration.
     */
    readonly arn?: string;
    /**
     * An array of CountryRule containing the rules for the NumberCapability.
     */
    readonly countryRuleSet?: outputs.smsvoice.ProtectConfigurationCountryRuleSet;
    /**
     * When set to true deletion protection is enabled and protect configuration cannot be deleted. By default this is set to false.
     */
    readonly deletionProtectionEnabled?: boolean;
    /**
     * The unique identifier for the protect configuration.
     */
    readonly protectConfigurationId?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::SMSVOICE::ProtectConfiguration
 */
export declare function getProtectConfigurationOutput(args: GetProtectConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProtectConfigurationResult>;
export interface GetProtectConfigurationOutputArgs {
    /**
     * The unique identifier for the protect configuration.
     */
    protectConfigurationId: pulumi.Input<string>;
}
