import { Binding, RequestScope } from '../interfaces'; export declare const tryGetFromScope: (requestScope: RequestScope, binding: Binding) => T | Promise | null; export declare const saveToScope: (requestScope: RequestScope, binding: Binding, result: T | Promise) => void;