export declare class ObjectReference {
    key: string;
    value: any;
    consume: () => any;
    timeout: any;
    constructor(key: string, value: any);
}
export default class ReferenceService {
    private cache;
    private id;
    get(key: string): ObjectReference;
    put(item: any, ttl?: number): ObjectReference;
}
//# sourceMappingURL=ReferenceService.d.ts.map