import React from 'react'; import { ControlSizes } from '../../models'; import { PopperPosition } from '../../hooks'; import './Control.scss'; export interface IconProps { width: number; height: number; } export interface ControlProps { onClick?: () => void; setRef?: (ref: HTMLButtonElement) => void; isVerticalView?: boolean; tooltipText: string; className?: string; size?: ControlSizes; icon: React.FC; popupPosition?: PopperPosition; } declare const Control: { (props: ControlProps): JSX.Element; displayName: string; }; export default Control;