import { type Remote } from 'comlink'; import type { MatrixRenderer } from '../workers/matrix-renderer'; /** * Asynchronously creates and returns a Remote instance. * This function simplifies the process of creating and accessing MatrixRenderer instances. */ export declare const createMatrixRenderer: () => Promise<{ matrixRenderer: Remote; terminate: () => void; }>;