import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlueClient"; import { GetPartitionIndexesRequest, GetPartitionIndexesResponse, } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface GetPartitionIndexesCommandInput extends GetPartitionIndexesRequest {} export interface GetPartitionIndexesCommandOutput extends GetPartitionIndexesResponse, __MetadataBearer {} declare const GetPartitionIndexesCommand_base: { new ( input: GetPartitionIndexesCommandInput ): import("@smithy/core/client").CommandImpl< GetPartitionIndexesCommandInput, GetPartitionIndexesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: GetPartitionIndexesCommandInput ): import("@smithy/core/client").CommandImpl< GetPartitionIndexesCommandInput, GetPartitionIndexesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class GetPartitionIndexesCommand extends GetPartitionIndexesCommand_base { protected static __types: { api: { input: GetPartitionIndexesRequest; output: GetPartitionIndexesResponse; }; sdk: { input: GetPartitionIndexesCommandInput; output: GetPartitionIndexesCommandOutput; }; }; }