import { VercelCore } from "../core.js";
import { RequestOptions } from "../lib/sdks.js";
import { AiGatewayRuleList } from "../models/aigatewayrulelist.js";
import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/httpclienterrors.js";
import { ListAiGatewayRulesRequest } from "../models/listaigatewayrulesop.js";
import { ResponseValidationError } from "../models/responsevalidationerror.js";
import { SDKValidationError } from "../models/sdkvalidationerror.js";
import { VercelError } from "../models/vercelerror.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
/**
 * List rules
 *
 * @remarks
 * List the authenticated team's routing rules
 *
 * If set, this operation will use {@link Security.bearerToken} from the global security.
 */
export declare function aiGatewayListAiGatewayRules(client: VercelCore, request: ListAiGatewayRulesRequest, options?: RequestOptions): APIPromise<Result<AiGatewayRuleList, VercelError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
//# sourceMappingURL=aiGatewayListAiGatewayRules.d.ts.map