import type { JsonSchemaDocument, JsonSchemaDocumentOptions } from "../../../toolcraft-schema/dist/index.js"; interface CompileConfigSchemaOptions { entrypoints: readonly string[]; document?: JsonSchemaDocumentOptions; } export interface CompileConfigSchemaFromSourceTextsOptions extends CompileConfigSchemaOptions { files: Record; } export declare function compileConfigSchemaFromEntrypoints(options: CompileConfigSchemaOptions): JsonSchemaDocument; export declare function compileConfigSchemaFromSourceTexts(options: CompileConfigSchemaFromSourceTextsOptions): JsonSchemaDocument; export {};