import { FieldNameType, NamespaceType } from '../common'; /** * Reset field, but ignoring initial value */ export declare const clearField: (namespace: NamespaceType, fieldName: FieldNameType) => void; /** * Reset field to default state and setting last provided initial value */ export declare const resetField: (namespace: NamespaceType, fieldName: FieldNameType) => void;