import type { ConfigUiHint, ConfigUiHints } from "./schema.hints.js"; export type { ConfigUiHint, ConfigUiHints } from "./schema.hints.js"; export type ConfigSchema = Record; type JsonSchemaNode = Record; export type ConfigSchemaResponse = { schema: ConfigSchema; uiHints: ConfigUiHints; version: string; generatedAt: string; }; export type ConfigSchemaLookupChild = { key: string; path: string; type?: string | string[]; required: boolean; hasChildren: boolean; hint?: ConfigUiHint; hintPath?: string; }; export type ConfigSchemaLookupResult = { path: string; schema: JsonSchemaNode; hint?: ConfigUiHint; hintPath?: string; children: ConfigSchemaLookupChild[]; }; export type PluginUiMetadata = { id: string; name?: string; description?: string; configUiHints?: Record>; configSchema?: JsonSchemaNode; }; export type ChannelUiMetadata = { id: string; label?: string; description?: string; configSchema?: JsonSchemaNode; configUiHints?: Record; }; export declare function buildConfigSchema(params?: { plugins?: PluginUiMetadata[]; channels?: ChannelUiMetadata[]; cache?: boolean; }): ConfigSchemaResponse; export declare function lookupConfigSchema(response: ConfigSchemaResponse, path: string): ConfigSchemaLookupResult | null;