import type { ChatParticipantData } from '../../types.js'; export interface Props { /** Room participants */ participants: ChatParticipantData[]; /** Callback to close the member panel */ onclose: () => void; } declare const MemberList: import("svelte").Component; type MemberList = ReturnType; export default MemberList; //# sourceMappingURL=MemberList.svelte.d.ts.map