//#region src/main/worker/nativeDispatch.d.ts interface NativeCallActionMessage { command: `${string}.${string}`; id: number; args: unknown[]; } interface DispatchContext { module: Record; } declare function dispatchNativeCall(message: NativeCallActionMessage, ctx: DispatchContext): Promise; declare function isNativeCallCommand(command: string): boolean; //#endregion export { isNativeCallCommand as i, NativeCallActionMessage as n, dispatchNativeCall as r, DispatchContext as t };