/*!
 * Copyright (c) 2026-present, Vanilagy and contributors
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */
import { type WorkerCommand, type WorkerResponseData } from './shared';
export declare const refWorker: () => Promise<void>;
export declare const unrefWorker: () => Promise<void>;
export declare const sendCommand: <T extends string>(command: WorkerCommand & {
    type: T;
}, transferables?: Transferable[]) => Promise<WorkerResponseData & {
    type: T;
}>;
//# sourceMappingURL=worker-client.d.ts.map