import type { ApiRequest } from "./common.js"; export type ShutdownRequest = ApiRequest<"Shutdown">; export type ShutdownResponse = string; export declare const buildShutdown: (options: import("./common.js").InternalClientOptions) => (extra?: Omit | undefined) => Promise;