export type Callable = new (obj: any) => T; export declare function map(value: T | undefined, clazz?: Callable): T; export declare function mapArray(value: T[] | undefined, clazz?: Callable): T[];