import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2RatelimitSetOverrideResponseData = {
    /**
     * The unique identifier for the newly created or updated rate limit override. This ID can be used to:
     *
     * @remarks
     *
     * - Reference this specific override in subsequent API calls
     * - Delete or modify this override later
     * - Track which override is being applied in rate limit responses
     * - Associate override effects with specific rules in analytics
     *
     * Store this ID if you need to manage the override in the future.
     */
    overrideId: string;
};
/** @internal */
export declare const V2RatelimitSetOverrideResponseData$inboundSchema: z.ZodType<V2RatelimitSetOverrideResponseData, z.ZodTypeDef, unknown>;
export declare function v2RatelimitSetOverrideResponseDataFromJSON(jsonString: string): SafeParseResult<V2RatelimitSetOverrideResponseData, SDKValidationError>;
//# sourceMappingURL=v2ratelimitsetoverrideresponsedata.d.ts.map