import React from 'react'; import { User } from '../types'; import { ScreenProps } from './utils/stack-helpers'; import { StyleProp, TextStyle } from 'react-native'; import { ParseShape } from 'react-native-parsed-text'; export type DirectMessageParams = { users: User[]; conversationId: string; }; export declare const DirectMessagesScreen: ({ navigation, route, }: ScreenProps) => React.JSX.Element; export declare const messageTextParsers: (linkStyle: StyleProp, disabled?: boolean) => ParseShape[]; declare const defaultStyles: (theme: import("../components/BrandConfigProvider").Theme) => readonly ["DirectMessagesScreen", import("../components/BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../components/BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};