declare type IDebugPanelHighlightStyles = {
    key: string;
    number: string;
    string: string;
    boolean: string;
    null: string;
};
declare type IDebugPanelViewStyles = IDebugPanelHighlightStyles & {
    debugPanel: string;
    infoContainer: string;
    closeButton: string;
    hidden: string;
};
declare type IDebugPanelViewCallbacks = {
    onCloseButtonClick: EventListenerOrEventListenerObject;
};
declare type IDebugPanelViewConfig = {
    callbacks: IDebugPanelViewCallbacks;
};
export { IDebugPanelHighlightStyles, IDebugPanelViewStyles, IDebugPanelViewCallbacks, IDebugPanelViewConfig, };
