/** * Kubernetes manifest extraction (spec-07). * * One node per YAML document (`---`-separated). Edges follow the typed * references that operators reason about: label selectors, *KeyRef / envFrom, * volume refs, serviceName, ownerReferences, Ingress→Service, serviceAccount. * Unknown kinds (CRDs) still become nodes — only unresolved edges are dropped. */ import type { IacGraph } from './types.js'; export declare function extractKubernetes(files: Array<{ path: string; content: string; }>): IacGraph; //# sourceMappingURL=kubernetes.d.ts.map