/**
 * Copyright (c) 2024 mol* contributors, licensed under MIT, See LICENSE file for more info.
 *
 * @author David Sehnal <david.sehnal@gmail.com>
 */
export declare class PluginContainer {
    options?: {
        checkeredCanvasBackground?: boolean;
        canvas?: HTMLCanvasElement;
    } | undefined;
    readonly parent: HTMLDivElement;
    readonly canvas: HTMLCanvasElement;
    mount(target: HTMLElement): void;
    unmount(): void;
    constructor(options?: {
        checkeredCanvasBackground?: boolean;
        canvas?: HTMLCanvasElement;
    } | undefined);
}
