import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource schema for AWS::Route53GlobalResolver::GlobalResolver
 */
export declare function getGlobalResolver(args: GetGlobalResolverArgs, opts?: pulumi.InvokeOptions): Promise<GetGlobalResolverResult>;
export interface GetGlobalResolverArgs {
    globalResolverId: string;
}
export interface GetGlobalResolverResult {
    readonly arn?: string;
    readonly createdAt?: string;
    readonly description?: string;
    readonly dnsName?: string;
    readonly globalResolverId?: string;
    readonly iPv4Addresses?: string[];
    readonly iPv6Addresses?: string[];
    readonly ipAddressType?: enums.route53globalresolver.GlobalResolverIpAddressType;
    readonly name?: string;
    readonly observabilityRegion?: string;
    /**
     * A list of regions the Global Resolver will exist in. This list cannot be updated and will stay fixed for the duration of the Global Resolver.
     */
    readonly regions?: string[];
    readonly status?: enums.route53globalresolver.GlobalResolverCrResourceStatus;
    readonly tags?: outputs.Tag[];
    readonly updatedAt?: string;
}
/**
 * Resource schema for AWS::Route53GlobalResolver::GlobalResolver
 */
export declare function getGlobalResolverOutput(args: GetGlobalResolverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlobalResolverResult>;
export interface GetGlobalResolverOutputArgs {
    globalResolverId: pulumi.Input<string>;
}
