import type { ApiRequest } from "./common.js"; export type SetAutoLoadSessionNameRequest = ApiRequest<"SetAutoLoadSessionName", { /** * Name of the session to automatically load on Dedicated Server startup. */ sessionName: string; }>; export type SetAutoLoadSessionNameResponse = string; export declare const buildSetAutoLoadSessionName: (options: import("./common.js").InternalClientOptions) => (extra?: Omit | undefined) => Promise;