import * as React from 'react';
interface DebugPanelItemProps {
    data: any;
    valueKey?: string;
    commentKey?: string;
    idKey?: string;
    commentKeyPredicate?: (val: any) => boolean;
}
export declare const DebugPanelItem: React.FC<DebugPanelItemProps>;
export {};
