import React from 'react'; import { WithTranslation, WithTranslationProps } from 'react-i18next'; import { ControlSizes, Lang, TextSizes, Theme } from '../../../../models'; import { PopperPosition } from '../../../../hooks'; import './SettingsControl.scss'; interface ControlProps { fullScreen?: boolean; singlePage?: boolean; wideFormat?: boolean; showMiniToc?: boolean; theme?: Theme; textSize?: TextSizes; lang: Lang; isVerticalView?: boolean; className?: string; size?: ControlSizes; onChangeWideFormat?: (value: boolean) => void; onChangeShowMiniToc?: (value: boolean) => void; onChangeTheme?: (theme: Theme) => void; onChangeTextSize?: (textSize: TextSizes) => void; popupPosition?: PopperPosition; } declare const _default: React.ComponentType & WithTranslationProps, WithTranslationProps>, keyof WithTranslation> & WithTranslationProps>; export default _default;