/** * An interface for mappers functions that converts a source type `S` to target type `T`. * * @typeParam S the source type * @typeParam T the target type */ export declare type Mapper = (source: S) => T;