import type { Transport } from '@novasamatech/host-api'; export declare const createWorker: (transport?: Transport) => { beginOperation(label?: string): Promise; endOperation(id: number): Promise; }; export declare const hostWorker: { beginOperation(label?: string): Promise; endOperation(id: number): Promise; };