import * as pulumi from "@pulumi/pulumi";
/**
 * Resource Type definition for AWS::SMSVOICE::ResourcePolicy
 */
export declare function getResourcePolicy(args: GetResourcePolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetResourcePolicyResult>;
export interface GetResourcePolicyArgs {
    /**
     * The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource to attach the resource-based policy to.
     */
    resourceArn: string;
}
export interface GetResourcePolicyResult {
    /**
     * The JSON formatted resource-based policy to attach.
     *
     * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::SMSVOICE::ResourcePolicy` for more information about the expected schema for this property.
     */
    readonly policyDocument?: any;
}
/**
 * Resource Type definition for AWS::SMSVOICE::ResourcePolicy
 */
export declare function getResourcePolicyOutput(args: GetResourcePolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourcePolicyResult>;
export interface GetResourcePolicyOutputArgs {
    /**
     * The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource to attach the resource-based policy to.
     */
    resourceArn: pulumi.Input<string>;
}
