import React from "react"; import { StyleProp } from "react-native"; type MessageItem = { [key: string]: any; }; type Props = { style?: StyleProp; faded?: boolean; deadFocus?: boolean; vampiresFocus?: boolean; appearance?: "dark" | "light"; messages: Array; labelFormatter: (user: string) => { displayName: string; labelStyle: any; }; }; export declare const MessageList: React.FC; export {}; //# sourceMappingURL=MessageList.d.ts.map