import type { ViewStyle, TextStyle } from 'react-native'; import type { LeftRightStyle, IMessage } from './Models'; export interface TimeProps { position?: 'left' | 'right'; currentMessage: TMessage; containerStyle?: LeftRightStyle; timeTextStyle?: LeftRightStyle; timeFormat?: string; } declare const Time: { ({ position: positionProp, containerStyle, currentMessage, timeFormat, timeTextStyle, }: TimeProps): JSX.Element | null; defaultProps: { position: string; containerStyle: undefined; timeFormat: string; timeTextStyle: undefined; }; }; export default Time;