import type { CodeParser } from "./code-parser.js"; declare function isMissingDefaultParserExtension(error: unknown): boolean; declare function createDefaultParser(extensionModule: unknown): CodeParser; declare function registerDefaultParserModule(extensionModule: unknown): void; /** @internal Test-only seams; this module is not a public package entry point. */ export declare const defaultParserContractsInternals: Readonly<{ createDefaultParser: typeof createDefaultParser; isMissingDefaultParserExtension: typeof isMissingDefaultParserExtension; registerDefaultParserModule: typeof registerDefaultParserModule; }>; /** @internal Load a first-party parser instance without replacing an active contract. */ export declare function loadDefaultCodeParser(): Promise; /** * Lazily register the first-party CodeParser implementation when it is * available from workspace source or an installed @veryfront/ext package. */ export declare function ensureDefaultParserContracts(): Promise; export {}; //# sourceMappingURL=defaults.d.ts.map