import { K8tsManifest, type ResourceVertex } from "@k8ts/instruments"; import type EventEmitter from "eventemitter3"; import { type DumpOptions } from "js-yaml"; export interface YamlSerializerOptions { jsYamlOptions: DumpOptions; emitter?: EventEmitter; } export interface SerializingEvent { manifest: K8tsManifest; resource: ResourceVertex; } export interface SerializerEventsTable { serialize: SerializingEvent; } export declare class Engine_Serializer_Yaml { private readonly _options; constructor(_options: Partial); serialize(input: K8tsManifest): Promise; } //# sourceMappingURL=serializer.d.ts.map