import { FormikValues } from './types'; import { FieldConfig } from './Field.types'; /** * @deprecated Use Field + FieldConfig */ export declare type FastFieldConfig = FieldConfig & { shouldUpdate?: (nextProps: any, props: {}) => boolean; }; /** * @deprecated Field now only subscribes to its own slice of Formik's state. */ export declare const FastField: ({ shouldUpdate, ...props }: FastFieldConfig) => JSX.Element;