import { Entity } from './types'; export declare class MappedRef { readonly Entity: Entity; readonly mapping: (entity: T) => U; constructor(Entity: Entity, mapping: (entity: T) => U); }