import { IObservable } from '../../../../../type/observable.type';
export interface IGetReferenceValue<GValue> {
    (): GValue;
}
export declare function reference<GValue>(getValue: IGetReferenceValue<GValue>): IObservable<GValue>;
