interface ScopeOptions { task?: string; allow?: string; forbid?: string; success?: string; } export interface ScopeData { task: string; allowed: string[]; forbidden: string[]; success: string[]; createdAt: string; } export declare function runScope(options: ScopeOptions): Promise; export {}; //# sourceMappingURL=scope.d.ts.map