import { K8sResource, type ResourceRef, type Resource_Props_Top } from "@k8ts/instruments"; import { K8S } from "@k8ts/sample-interfaces"; import { gateway } from "../../../gvks/gateway"; import type { Service_PortRef } from "../service/service-port"; export interface HttpRoute_Props extends Resource_Props_Top { $gateway: ResourceRef; $hostname: string; $backend: Service_PortRef; } export declare class HttpRoute extends K8sResource> { get kind(): import("@k8ts/instruments").Gvk<"gateway.networking.k8s.io/v1/HTTPRoute">; private _getBackendRef; protected __body__(): K8S.HttpRouteProps; protected __needs__(): { gateway: ResourceRef>; service: import("..").Service_Ref; }; } //# sourceMappingURL=http-route.d.ts.map