import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::SMSVOICE::OptOutList
 */
export declare function getOptOutList(args: GetOptOutListArgs, opts?: pulumi.InvokeOptions): Promise<GetOptOutListResult>;
export interface GetOptOutListArgs {
    /**
     * The name of the new OptOutList.
     */
    optOutListName: string;
}
export interface GetOptOutListResult {
    /**
     * The Amazon Resource Name (ARN) for the OptOutList.
     */
    readonly arn?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::SMSVOICE::OptOutList
 */
export declare function getOptOutListOutput(args: GetOptOutListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOptOutListResult>;
export interface GetOptOutListOutputArgs {
    /**
     * The name of the new OptOutList.
     */
    optOutListName: pulumi.Input<string>;
}
