import type { EditorModel } from '../../../../../v2/features/editor/helpers/model'; /** * Creates a YAML model for use in the Monaco editor. * * @param value - The initial YAML string value for the model. * @returns An object containing the Monaco model and a method to get a range from a YAML path. * * The created model is configured for YAML language support. * The `getRangeFromPath` method returns a Monaco Range object indicating the text range * that corresponds to a given path in the YAML document, or null if the path is not found. */ export declare const createYamlModel: (value?: string) => EditorModel; //# sourceMappingURL=create-yaml-model.d.ts.map