import { StyleProp, TextStyle } from 'react-native'; import type { TouchableOpacityProps } from '../TouchableOpacity/type'; interface StepButtonProps extends TouchableOpacityProps { isPlus?: boolean; lineStyle?: StyleProp; longPress?: boolean; } declare const StepButton: (props: StepButtonProps) => JSX.Element; export default StepButton;