import { default as React } from 'react';
import { WikiContainer } from '../../components/WikiContainer';
/**
 *
 * A wrapper component for WikiContainer that displays JSON state for debugging
 * This component provides visualization panels for:
 * 1. The compiled script structure
 * 2. The workout results as they are generated
 */
interface EditorWithStateProps extends React.ComponentProps<typeof WikiContainer> {
    debug?: boolean;
}
export declare const EditorWithState: React.FC<EditorWithStateProps>;
export {};
