declare class ScreenShotCanvasStore {
    private initialState;
    imageController: HTMLCanvasElement | null;
    screenShotCanvas: CanvasRenderingContext2D | null;
    private readonly applyInitialState;
    constructor();
    updateScreenShotCanvas(screenShotCanvas: CanvasRenderingContext2D): void;
    setImageController(imageController: HTMLCanvasElement): void;
    reset(): void;
}
declare const screenShotCanvasStore: ScreenShotCanvasStore;
export default screenShotCanvasStore;
