/** * Product-distribution default for the general YAML parser contract. * * Mirrors `skill-defaults.ts`: the first-party `ext-yaml` extension owns the * third-party parser, and core reaches it through a dynamic import so the root * package never statically depends on it. An installation without the * extension simply has no default, and the call site raises the registry's * missing-extension error. * * @module extensions/parser/yaml-defaults */ import { type YamlParserProvider } from "./yaml-parser.js"; /** * Load the product distribution's extension-owned default YAML parser. * * Returns undefined when the extension is not installed. A load failure * *inside* an installed extension is rethrown: that is a broken installation, * not an absent one, and hiding it would surface later as a confusing * "install @veryfront/ext-yaml" message for an extension that is present. */ export declare function loadDefaultYamlParserProvider(): Promise | undefined>; //# sourceMappingURL=yaml-defaults.d.ts.map