import React from 'react'; import { ParamListBase } from '@react-navigation/native'; import type { ComposeScreenParamTypes } from '../../screens/ComposeMessageScreen'; import { UserProfile } from '../../hooks/useMessagingProfiles'; type Props = { users: UserProfile[]; routeMapIn: ComposeScreenParamTypes['RouteMap']; }; export declare function ComposeInputBar({ users, routeMapIn, }: Props): React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["ComposeInputBar", import("../BrandConfigProvider/styles/createStyles").NamedStyles<{ activityIndicator: { view: any; text: any; }; inputToolbarContainer: { marginHorizontal: number; flex: number; position: "relative"; alignContent: "flex-start"; minHeight: number; }; inputToolbarPrimaryView: { flex: number; flexDirection: "column"; alignItems: "stretch"; }; inputText: { textAlignVertical: "top"; flex: number; color: string; }; sendIconColor: { enabled: string; disabled: string; }; placeholderText: { color: string; }; sendButton: { position: "absolute"; margin: number; right: number; bottom: number; }; }>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};