export declare type FunctionAnyMapper<T> = (value: T) => any;
export declare type AnyMapper<T> = FunctionAnyMapper<T> | keyof T;
