import * as React from 'react';
import { FieldProps } from './Props';
declare class Field<Value> extends React.Component<FieldProps<Value>> {
    static defaultProps: {
        cache: boolean;
    };
    constructor(props: FieldProps<Value>);
    shouldComponentUpdate(nextProps: FieldProps<Value>): boolean;
    handleChange(value: any): void;
    render(): any;
}
export default Field;
