import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::EC2::IPAMPrefixListResolver
 */
export declare function getIpamPrefixListResolver(args: GetIpamPrefixListResolverArgs, opts?: pulumi.InvokeOptions): Promise<GetIpamPrefixListResolverResult>;
export interface GetIpamPrefixListResolverArgs {
    /**
     * Id of the IPAM Prefix List Resolver.
     */
    ipamPrefixListResolverId: string;
}
export interface GetIpamPrefixListResolverResult {
    readonly description?: string;
    /**
     * The Amazon Resource Name (ARN) of the IPAM this Prefix List Resolver is a part of.
     */
    readonly ipamArn?: string;
    /**
     * The Amazon Resource Name (ARN) of the IPAM Prefix List Resolver
     */
    readonly ipamPrefixListResolverArn?: string;
    /**
     * Id of the IPAM Prefix List Resolver.
     */
    readonly ipamPrefixListResolverId?: string;
    /**
     * Rules define the business logic for selecting CIDRs from IPAM.
     */
    readonly rules?: outputs.ec2.IpamPrefixListResolverRule[];
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::EC2::IPAMPrefixListResolver
 */
export declare function getIpamPrefixListResolverOutput(args: GetIpamPrefixListResolverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIpamPrefixListResolverResult>;
export interface GetIpamPrefixListResolverOutputArgs {
    /**
     * Id of the IPAM Prefix List Resolver.
     */
    ipamPrefixListResolverId: pulumi.Input<string>;
}
