export default Inspector;
declare function Inspector(props?: {}): {
    enable: (onClickCallback: any) => void;
    cancel: () => void;
    removeHighlight: (el: any) => void;
    highlight: (el: any) => void;
};
