/** This interface represents the external user data for a participant */ interface ParticipantUser { id: string; fullName?: string; } export declare const useGetParticipantUser: () => (id: string) => ParticipantUser; export declare const useParticipantUser: (id: string) => ParticipantUser; export {};