/** * Shared arrow-control button props used by previous/next controls. */ interface ControlProps { arrow?: string | null; onPress?: () => void; label?: string; className?: string | null; disabled?: boolean; light?: boolean; } /** * Renders a reusable SVG arrow button for gallery navigation. */ declare function Control({ arrow, onPress, label, className, disabled, light: _light, }: ControlProps): import("react/jsx-runtime").JSX.Element; declare const MemoizedControl: import("react").MemoExoticComponent; export { MemoizedControl as Control }; /** * @deprecated Use named import instead: `import { Control } from './control'`. * Default export will be removed in the next major version. */ export default MemoizedControl;