import { DomainObjectShape } from '../DomainReferenceable';
import { DomainReferenceByPivotKey } from './DomainPivotKey';
export declare const unpivotRef: <TDobj extends DomainObjectShape, TPivotKey extends keyof TDobj, TPivotValue extends keyof TDobj>(ref: DomainReferenceByPivotKey<TDobj, TPivotKey, TPivotValue>, key: TPivotKey, value: TPivotValue) => { [key in TPivotKey]: TDobj[TPivotKey]; } & { [key_1 in TPivotValue]: TDobj[TPivotValue]; };
