import React from 'react'; import { HomeStackScreenProps } from '../../navigators'; import { SvgProps } from 'react-native-svg'; interface Props extends Pick, 'navigation'> { id: string; title: string; Icon: React.FC; tileListMode: 'list' | 'column'; } export declare function MessagesTile({ navigation, title, id, Icon, tileListMode, }: Props): React.JSX.Element; export {};