import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListRolesRequest = { /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are returned. */ limit?: number | undefined; }; export type ListRolesResponse = { result: components.CollectionRole; }; /** @internal */ export type ListRolesRequest$Outbound = { cursor?: string | null | undefined; limit: number; }; /** @internal */ export declare const ListRolesRequest$outboundSchema: z.ZodType; export declare function listRolesRequestToJSON(listRolesRequest: ListRolesRequest): string; /** @internal */ export declare const ListRolesResponse$inboundSchema: z.ZodType; export declare function listRolesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listroles.d.ts.map