import { Drop } from '../drop/drop'; export interface ScopeObject extends Record { toLiquid?: () => any; } export type Scope = ScopeObject | Drop; export declare function createScope(from?: ScopeObject): ScopeObject;