import { FormComponent, BoundProp } from '@tomino/dynamic-form';
export declare const repeaterAddButton: string;
export declare type RepeaterProps = {
    allowEdit: boolean;
    allowAdd: boolean;
    value: BoundProp;
    onDelete: string;
    onAdd: string;
};
export declare type State = {
    selectedIndex: number;
};
export declare const RepeaterView: FormComponent;
