import * as z from "zod/v4"; export type ListManagersGlobals = { /** * 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 ListManagersRequest = { /** * Search managers by name */ search?: string | undefined; /** * Maximum number of managers to return */ limit?: number | undefined; }; /** @internal */ export type ListManagersRequest$Outbound = { search?: string | undefined; limit?: number | undefined; }; /** @internal */ export declare const ListManagersRequest$outboundSchema: z.ZodType; export declare function listManagersRequestToJSON(listManagersRequest: ListManagersRequest): string; //# sourceMappingURL=listmanagers.d.ts.map