import React from 'react'; declare type Props = { active?: boolean; disabled?: boolean; handleEvent: () => void; icon?: string; notification?: boolean; svg?: object; text: string; visible?: boolean; style?: object; }; declare const Item: React.FC; export default Item;