import * as z from "zod/v3";
export type V2IdentitiesListIdentitiesRequestBody = {
    /**
     * The maximum number of identities to return in a single request. Use this to control response size and loading performance.
     */
    limit?: number | undefined;
    /**
     * Pagination cursor from a previous response. Use this to fetch subsequent pages of results when the response contains a cursor value.
     */
    cursor?: string | undefined;
};
/** @internal */
export type V2IdentitiesListIdentitiesRequestBody$Outbound = {
    limit: number;
    cursor?: string | undefined;
};
/** @internal */
export declare const V2IdentitiesListIdentitiesRequestBody$outboundSchema: z.ZodType<V2IdentitiesListIdentitiesRequestBody$Outbound, z.ZodTypeDef, V2IdentitiesListIdentitiesRequestBody>;
export declare function v2IdentitiesListIdentitiesRequestBodyToJSON(v2IdentitiesListIdentitiesRequestBody: V2IdentitiesListIdentitiesRequestBody): string;
//# sourceMappingURL=v2identitieslistidentitiesrequestbody.d.ts.map