/** * Props for the next-navigation control. */ interface NextButtonProps { onPress?: () => void; disabled?: boolean; light?: boolean; } /** * Renders the button that advances to the next photo. */ declare function NextButton({ onPress, disabled, light, }: NextButtonProps): import("react/jsx-runtime").JSX.Element; declare const MemoizedNextButton: import("react").MemoExoticComponent; export { MemoizedNextButton as NextButton }; /** * @deprecated Use named import instead: `import { NextButton } from './next-button'`. * Default export will be removed in the next major version. */ export default MemoizedNextButton;