import { BaseScope } from './base'; import { AutoScope } from './auto'; import { ArrayScope } from './array'; import { AsyncScope } from './async'; import { CastScope } from './cast'; import { ObjectScope } from './object'; import { ProxyScope } from './proxy'; export declare const FullScope: FSClass; export interface FSClass { new (...args: any[]): FSType; } export interface FSType extends BaseScope, AutoScope, AsyncScope, CastScope, ProxyScope, ArrayScope, ObjectScope { }