import React from 'react'; import type { InputArrayProps } from './types'; declare class InputArrayControl extends React.Component { comboInstance: any; constructor(props: InputArrayProps); comboRef(ref: any): void; validate(args: Array): any; render(): JSX.Element; } export declare class ArrayControlRenderer extends InputArrayControl { } export {};