import * as z from "zod/v4"; export type ListCommandNamesGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ListCommandNamesRequest = { /** * Filter by project ID or name. */ project?: string | undefined; /** * Search command names (prefix match) */ search?: string | undefined; }; /** @internal */ export type ListCommandNamesRequest$Outbound = { project?: string | undefined; search?: string | undefined; }; /** @internal */ export declare const ListCommandNamesRequest$outboundSchema: z.ZodType; export declare function listCommandNamesRequestToJSON(listCommandNamesRequest: ListCommandNamesRequest): string; //# sourceMappingURL=listcommandnames.d.ts.map