import React from 'react'; import { UserProfile } from '../../hooks/useMessagingProfiles'; type Props = { userIds: string[]; onProfileSelected: (profile: UserProfile) => void; selectedProfiles: UserProfile[]; hideSelf: () => void; }; export declare const SearchRecipientsModal: ({ userIds, onProfileSelected, selectedProfiles, hideSelf, }: Props) => React.JSX.Element; declare const defaultStyles: (theme: import("../BrandConfigProvider").Theme) => readonly ["SearchRecipientsModal", import("../BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export {};