import { K8sResource, type Resource_Props_Top, type ResourceRef } from "@k8ts/instruments"; import { K8S } from "@k8ts/sample-interfaces"; import type { v1 } from "../../gvks"; import { rbac } from "../../gvks/rbac"; export interface ClusterRoleBoding_Props extends Resource_Props_Top { $role: ResourceRef; $subjects: ResourceRef[]; } export declare class ClusterRoleBinding extends K8sResource { get kind(): import("@k8ts/instruments").Gvk<"rbac.authorization.k8s.io/v1/ClusterRoleBinding">; protected __needs__(): { role: ResourceRef>; subjects: ResourceRef>[]; }; protected __body__(): K8S.KubeClusterRoleBindingProps; } //# sourceMappingURL=cluster-role-binding.d.ts.map