import { SharedValue } from 'react-native-reanimated'; import type { StyleProp, TextStyle } from 'react-native'; declare type Props = { time: SharedValue; style?: StyleProp; }; declare const CurrentTime: ({ time, style }: Props) => JSX.Element; export default CurrentTime;