import { ActionType } from "./controls.model"; type RenderControlsProps = { activeZoom: string; onAction: (action: ActionType) => void; startReached?: boolean; endReached?: boolean; isFullScreen?: boolean; isDark?: boolean; }; declare const renderControls: ({ activeZoom, onAction, startReached, endReached, isFullScreen, isDark, }: RenderControlsProps) => import("react/jsx-runtime").JSX.Element; export { renderControls };