import * as z from "zod/v4"; import { Verb } from "./verb.js"; export type Rule = { apiGroup: string; resource: string; verbs: Array; resourceNames?: Array | undefined; reason: string; }; /** @internal */ export type Rule$Outbound = { apiGroup: string; resource: string; verbs: Array; resourceNames?: Array | undefined; reason: string; }; /** @internal */ export declare const Rule$outboundSchema: z.ZodType; export declare function ruleToJSON(rule: Rule): string; //# sourceMappingURL=rule.d.ts.map