import type { AutoFormConfig, ComponentsMap } from './types/index.js'; export interface ComponentDefinition { component: any; componentProps?: Record; } export declare const COMPONENTS_MAP: ComponentsMap; export declare function mapZodTypeToComponent(key: string, zodType: any, config: AutoFormConfig, state: any): ComponentDefinition | null;