import './index.css'; import { ParticipantActionType, User } from './attendee'; export interface FcrMobileParticipantProps { userList: User[]; header?: React.ReactNode; footer?: React.ReactNode; userRenderer?: (user: User) => React.ReactNode; toggleParticipantAction?: (action: ParticipantActionType, userId: string) => void; toggleRoomControlAction?: (action: string, userId?: string) => void; onSearch: (value: string) => void; searchText?: string; onInvite?: () => void; hasPinnedStream: boolean; } export declare const FcrMobileParticipants: (props: FcrMobileParticipantProps) => import("react").JSX.Element;