import React from "react";
interface ScreenshotCanvasProps {
    style?: React.CSSProperties;
    className?: string;
    children: React.ReactNode;
}
export default function ScreenshotCanvas({ style, className, children }: ScreenshotCanvasProps): JSX.Element;
export {};
