import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2RatelimitListOverridesRequestBody = {
    /**
     * The id of the namespace to list overrides for.
     */
    namespaceId?: string | undefined;
    /**
     * The name of the namespace to list overrides for.
     */
    namespaceName?: string | undefined;
    /**
     * Pagination cursor from a previous response
     */
    cursor?: string | undefined;
    /**
     * Maximum number of results to return
     */
    limit?: number | undefined;
};
/** @internal */
export declare const V2RatelimitListOverridesRequestBody$inboundSchema: z.ZodType<V2RatelimitListOverridesRequestBody, z.ZodTypeDef, unknown>;
/** @internal */
export type V2RatelimitListOverridesRequestBody$Outbound = {
    namespaceId?: string | undefined;
    namespaceName?: string | undefined;
    cursor?: string | undefined;
    limit: number;
};
/** @internal */
export declare const V2RatelimitListOverridesRequestBody$outboundSchema: z.ZodType<V2RatelimitListOverridesRequestBody$Outbound, z.ZodTypeDef, V2RatelimitListOverridesRequestBody>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace V2RatelimitListOverridesRequestBody$ {
    /** @deprecated use `V2RatelimitListOverridesRequestBody$inboundSchema` instead. */
    const inboundSchema: z.ZodType<V2RatelimitListOverridesRequestBody, z.ZodTypeDef, unknown>;
    /** @deprecated use `V2RatelimitListOverridesRequestBody$outboundSchema` instead. */
    const outboundSchema: z.ZodType<V2RatelimitListOverridesRequestBody$Outbound, z.ZodTypeDef, V2RatelimitListOverridesRequestBody>;
    /** @deprecated use `V2RatelimitListOverridesRequestBody$Outbound` instead. */
    type Outbound = V2RatelimitListOverridesRequestBody$Outbound;
}
export declare function v2RatelimitListOverridesRequestBodyToJSON(v2RatelimitListOverridesRequestBody: V2RatelimitListOverridesRequestBody): string;
export declare function v2RatelimitListOverridesRequestBodyFromJSON(jsonString: string): SafeParseResult<V2RatelimitListOverridesRequestBody, SDKValidationError>;
//# sourceMappingURL=v2ratelimitlistoverridesrequestbody.d.ts.map