import React from 'react'; /** * When creating custom elements we need to ensure the accessibility * using both mouse and keyboard events * This component is a div element with the necessary controls to assura that */ export declare const Interactive: React.ForwardRefExoticComponent<{ onClick: () => void; children: React.ReactNode; } & React.HTMLAttributes & React.RefAttributes>;