import React from 'react';
interface DebugAreaProps {
    id: string;
    state: any;
    viewport: {
        width: number;
        height: number;
    };
    type?: string;
    targetSpace?: string;
}
export declare const Debug: React.FC<DebugAreaProps>;
export {};
