export declare type MappingExceptionRule = keyof TSource | ((src?: TSource) => any); export declare type MappingExceptions = { [key in keyof TDest]?: MappingExceptionRule[]; } | { [key in keyof TDest]?: MappingExceptionRule; };