import { Command as $Command } from "@smithy/core/client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  EKSClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../EKSClient";
import {
  StartInsightsRefreshRequest,
  StartInsightsRefreshResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface StartInsightsRefreshCommandInput
  extends StartInsightsRefreshRequest {}
export interface StartInsightsRefreshCommandOutput
  extends StartInsightsRefreshResponse,
    __MetadataBearer {}
declare const StartInsightsRefreshCommand_base: {
  new (
    input: StartInsightsRefreshCommandInput
  ): import("@smithy/core/client").CommandImpl<
    StartInsightsRefreshCommandInput,
    StartInsightsRefreshCommandOutput,
    EKSClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: StartInsightsRefreshCommandInput
  ): import("@smithy/core/client").CommandImpl<
    StartInsightsRefreshCommandInput,
    StartInsightsRefreshCommandOutput,
    EKSClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): {
    [x: string]: unknown;
  };
};
export declare class StartInsightsRefreshCommand extends StartInsightsRefreshCommand_base {
  protected static __types: {
    api: {
      input: StartInsightsRefreshRequest;
      output: StartInsightsRefreshResponse;
    };
    sdk: {
      input: StartInsightsRefreshCommandInput;
      output: StartInsightsRefreshCommandOutput;
    };
  };
}
