import type { ComponentType, FC } from 'react'; import type * as ParserTypes from '../../../../libs/fspropertybinding'; import type { ExtractPropertyNames } from '../../../../libs/standard-types'; import type { ArrayFieldDefinition, WithPropertyBindingArray } from './merge-props.types'; export declare type WithDataMultiArrayProps> = WithPropertyBindingArray; export declare const makeWithDataMultiArray: (Parser: typeof ParserTypes) => >(...fields: ArrayFieldDefinition[]) => (Component: ComponentType) => FC>;