export type IProperties = Record; export type IMapping = (input: Input) => Output; /** Maps input to output. This is the default Mapping */ export declare const Identity: (value: unknown) => unknown; export interface IParser { type: string; mapping: IMapping; }