import { FormRefObject } from "@ezform/core";
interface FieldListProps {
    form: FormRefObject;
    name: string;
    renderRow: (props: {
        add: () => () => void;
        remove: (index: number) => () => void;
        index: number;
        total: number;
    }) => any;
    extraRows?: number;
}
export declare const FieldList: (props: FieldListProps) => any;
export {};
