import { type Tree } from '../../../utils'; export interface MBComposition { [key: string]: any; } interface MBElementConfig { TEXT_AREA?: string[]; MB_VALUESET?: string[]; } export declare function createAutoFormByTemplateId(webTemplate: Tree, handleSearch: Function, config: MBElementConfig, addContext?: boolean): void; export declare function bindRepeatables(mbRepeatables: Element[], repeatableArray: Element[], formNode: Element, composition: MBComposition, handleSearch: Function, config: MBElementConfig): void; export {};