///
/**
* A React context that provides access to a SimpleFormIterator data (the total number of items) and mutators (add, reorder and remove).
* Useful to create custom array input iterators.
* @see {SimpleFormIterator}
* @see {ArrayInput}
*/
export declare const SimpleFormIteratorContext: import("react").Context;
export declare type SimpleFormIteratorContextValue = {
total: number;
add: () => void;
remove: (index: number) => void;
reOrder: (index: number, newIndex: number) => void;
};