/** * Reference: https://github.com/ajv-validator/ajv/issues/763#issuecomment-1724751308 */ import type { editor } from "monaco-editor"; import { GeneralRecord } from "../../../lib"; type ValidateReturn = { success: true; data: GeneralRecord; } | { success: false; markers: editor.IMarkerData[]; }; export declare enum MarkerSeverity { Hint = 1, Info = 2, Warning = 4, Error = 8 } export declare function validateVSCodeYaml(recipe: string, skipInstillFormatCheck?: boolean): ValidateReturn; export {}; //# sourceMappingURL=validateVSCodeYaml.d.ts.map