import "regenerator-runtime/runtime"; import { RemoteChannel } from "@remote-ui/core"; import { BugsnagConfiguration } from "./bugsnag"; export interface IEndpoint { call: { run: (receiver: RemoteChannel, url: string, args: Record, componentNames: string[], bugsnagConfiguration?: BugsnagConfiguration) => any; authenticatedFetch: (url: string, options: any) => any; authenticatedIntegratorFetch: (url: string, options: any) => any; }; expose: (list: any) => any; callable: (name: string) => any; terminate: () => void; } export declare const run: IEndpoint["call"]["run"]; //# sourceMappingURL=worker.d.ts.map