import { Result } from './result'; interface ProxyItem { name: string; args: any[]; resolve?: (promise: Promise) => void; } export type QueueProxy = Array; export interface InstanceProxy { _q: QueueProxy; _iq: Record; } export {}; //# sourceMappingURL=proxy.d.ts.map