import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Use this data source to query detailed information of cloudfs ns quotas
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.cloudfs.getNsQuotas({
 *     fsNames: [
 *         "tffile",
 *         "tftest2",
 *     ],
 * });
 * ```
 */
export declare function getNsQuotas(args: GetNsQuotasArgs, opts?: pulumi.InvokeOptions): Promise<GetNsQuotasResult>;
/**
 * A collection of arguments for invoking getNsQuotas.
 */
export interface GetNsQuotasArgs {
    /**
     * A list of fs name.
     */
    fsNames: string[];
    /**
     * File name where to save data source results.
     */
    outputFile?: string;
}
/**
 * A collection of values returned by getNsQuotas.
 */
export interface GetNsQuotasResult {
    readonly fsNames: string[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    /**
     * The collection of query.
     */
    readonly quotas: outputs.cloudfs.GetNsQuotasQuota[];
    /**
     * The total count of cloud fs quota query.
     */
    readonly totalCount: number;
}
/**
 * Use this data source to query detailed information of cloudfs ns quotas
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as volcengine from "@pulumi/volcengine";
 *
 * const default = volcengine.cloudfs.getNsQuotas({
 *     fsNames: [
 *         "tffile",
 *         "tftest2",
 *     ],
 * });
 * ```
 */
export declare function getNsQuotasOutput(args: GetNsQuotasOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNsQuotasResult>;
/**
 * A collection of arguments for invoking getNsQuotas.
 */
export interface GetNsQuotasOutputArgs {
    /**
     * A list of fs name.
     */
    fsNames: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * File name where to save data source results.
     */
    outputFile?: pulumi.Input<string>;
}
