import { default as React } from 'react'; interface ResponsiveButtonProps { icon: React.ReactElement; label: string; onClick?: () => void; placement?: 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top'; tooltipText: string; variant?: 'contained' | 'outlined' | 'text'; } declare const ResponsiveButton: React.FC; export default ResponsiveButton;