import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { AiGatewayRule } from "./aigatewayrule.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type AiGatewayRuleList = {
    rules: Array<AiGatewayRule>;
};
/** @internal */
export declare const AiGatewayRuleList$inboundSchema: z.ZodType<AiGatewayRuleList, z.ZodTypeDef, unknown>;
export declare function aiGatewayRuleListFromJSON(jsonString: string): SafeParseResult<AiGatewayRuleList, SDKValidationError>;
//# sourceMappingURL=aigatewayrulelist.d.ts.map