import "./polyfill/shared.js";
import { PrivateKey } from "./browser.js";
export interface WorkerAPI {
    run: (localProgram: string, aleoFunction: string, inputs: string[], privateKey: string) => Promise<{
        outputs: any;
        execution: string;
    } | string>;
    getPrivateKey: () => Promise<PrivateKey>;
}
