import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of veenedge instance types
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.veenedge.getInstanceTypes({});
 * ```
 */
/** @deprecated volcengine.veenedge.InstanceTypes has been deprecated in favor of volcengine.veenedge.getInstanceTypes */
export declare function instanceTypes(args?: InstanceTypesArgs, opts?: pulumi.InvokeOptions): Promise<InstanceTypesResult>;
/**
 * A collection of arguments for invoking InstanceTypes.
 */
export interface InstanceTypesArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by InstanceTypes.
 */
export interface InstanceTypesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * The collection of instance types query.
     */
    readonly instanceTypeConfigs: outputs.veenedge.InstanceTypesInstanceTypeConfig[];
    readonly outputFile?: string;
    /**
     * The total count of instance types query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of veenedge instance types
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.veenedge.getInstanceTypes({});
 * ```
 */
/** @deprecated volcengine.veenedge.InstanceTypes has been deprecated in favor of volcengine.veenedge.getInstanceTypes */
export declare function instanceTypesOutput(args?: InstanceTypesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<InstanceTypesResult>;
/**
 * A collection of arguments for invoking InstanceTypes.
 */
export interface InstanceTypesOutputArgs {
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
