import { HTMLProps } from 'react';
import { RefCallBack } from 'react-hook-form';
import { InputSize } from '../inputv2/inputv2';
export type InputListProps = Omit, 'size'> & {
ref?: RefCallBack;
min?: string | number;
max?: string | number;
maxLength?: number;
minLength?: number;
pattern?: string;
required?: boolean;
disabled?: boolean;
maxItems?: number;
value: T[];
size?: InputSize;
};
export declare const InputList: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>;
//# sourceMappingURL=InputList.component.d.ts.map