/** * YAML config helpers for AXM-owned structured config edits. * * @experimental All exports from this module are unstable and may change without notice. * @packageDocumentation */ export declare const parseYaml: (raw: string) => unknown; export declare const readYamlEntry: (raw: string, serversKey: string, serverName: string) => Readonly> | undefined; export declare const managedYamlNames: (raw: string, serversKey: string, isManaged: (entry: Readonly>) => boolean) => ReadonlyArray; export declare const setYamlEntry: (raw: string, serversKey: string, serverName: string, entry: Readonly>) => string; export declare const deleteYamlEntry: (raw: string, serversKey: string, serverName: string) => string; export declare const setYamlScalar: (raw: string, path: ReadonlyArray, value: boolean | number | string | null) => string; //# sourceMappingURL=index.d.ts.map