import { type SyncMessage } from "../types"; /** * Send a message to the main thread if we are running inside a worker thread, otherwise send it to the process interface. * * @export * @param {SyncMessage} message */ export declare function postMessageToMain(message: SyncMessage): void;