import React from 'react'; import type { ReactElement } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; interface ContentNavigatorProps { /** * The navigator's content value. */ value: number | string | ReactElement; /** * Handler to handle press event of previous icon. */ onPreviousPress: () => void; /** * Handler to handle press event of next icon. */ onNextPress: () => void; /** * Handler to handle press event of content navigator value. */ onPress?: () => void; /** * Whether the previous icon is disabled. */ previousDisabled?: boolean; /** * Whether the next icon is disabled. */ nextDisabled?: boolean; /** * Content font size. */ fontSize?: 'medium' | 'large'; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; } declare function ContentNavigator({ onPreviousPress, onNextPress, onPress, value, previousDisabled, nextDisabled, fontSize, testID, style, }: ContentNavigatorProps): React.JSX.Element; export default ContentNavigator;