import type FullyHomomorphicEncryptionClient from '../services/fhe'; import { ModelConfig } from '../typings'; export declare function handle(handler: string | Function, state: any, event: any, modelConfig?: ModelConfig, fhe?: FullyHomomorphicEncryptionClient): Promise; export declare function handleFHE(handler: string | Function, state: any, event: any, modelConfig: ModelConfig, fhe: FullyHomomorphicEncryptionClient): Promise; export declare function thread(script: string, state: any, event: any, extra?: any): Promise;