export interface IRunRequest { argsArray: unknown[]; thisArg: unknown; fn: Function; timeoutInMilliseconds: number; } export interface IRunResponse { error?: Error | string; result?: unknown; } declare const UserCodeRunner: { run({ argsArray, thisArg, fn, timeoutInMilliseconds }: IRunRequest): Promise; }; export default UserCodeRunner;