import React from 'react'; export interface OptionPopoverProps { title: string; Icon: React.ElementType; width?: number; active?: boolean; } declare const OptionPopover: React.FC; export { OptionPopover };