import { Dictionary } from 'lodash'; type SerializerFn = (obj: Dictionary) => Dictionary; declare const serializers: Dictionary; declare const disablePaths: (paths?: string[]) => void; declare const enablePaths: (paths?: string[]) => void; export { disablePaths, enablePaths, serializers };