import React from 'react'; import { WithTranslation, WithTranslationProps } from 'react-i18next'; import { ControlSizes, Lang } from '../../../models'; import { PopperPosition } from '../../../hooks'; import '../Controls.scss'; interface ControlProps { lang: Lang; langs?: string[]; isVerticalView?: boolean; className?: string; size?: ControlSizes; onChangeLang?: (lang: Lang) => void; popupPosition?: PopperPosition; } declare const _default: React.ComponentType & WithTranslationProps, WithTranslationProps>, keyof WithTranslation> & WithTranslationProps>; export default _default;