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