import Field from '../field';
declare const buildFromFunction: <T>(fieldName: string, [func]: [(inc: number) => T]) => (increment: number) => Field<T>;
export default buildFromFunction;
