import * as pulumi from "@pulumi/pulumi";
/**
 * Resource Type definition for AWS::DAX::SubnetGroup
 */
export declare function getSubnetGroup(args: GetSubnetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetSubnetGroupResult>;
export interface GetSubnetGroupArgs {
    id: string;
}
export interface GetSubnetGroupResult {
    /**
     * The description of the subnet group.
     */
    readonly description?: string;
    readonly id?: string;
    /**
     * A list of VPC subnet IDs for the subnet group.
     */
    readonly subnetIds?: string[];
}
/**
 * Resource Type definition for AWS::DAX::SubnetGroup
 */
export declare function getSubnetGroupOutput(args: GetSubnetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSubnetGroupResult>;
export interface GetSubnetGroupOutputArgs {
    id: pulumi.Input<string>;
}
