import { FieldControl } from '../interfaces'; export declare type TabArrayConfiguration = { nameField: keyof T; fieldControl: FieldControl; preventAdd?: boolean; preventDelete?: boolean; }; export declare function createTabArray(config: TabArrayConfiguration): FieldControl>;