import type { ImageSourcePropType, ImageStyle, StyleProp, ViewStyle } from 'react-native'; export interface MediaButtonProps { speed: number; style: StyleProp; buttonStyle: StyleProp; playImageSource: ImageSourcePropType; pauseImageSource: ImageSourcePropType; imageStyle: StyleProp; onPlayPress: () => void; onPausePress: () => void; pulseStyle: StyleProp; pulseStart: number; pulseEnd: number; pulseSpeed: number; pulseDisable: boolean; }