import type { User } from './user.js';
export interface SpeakingStateChange {
    user: User;
    speaking: boolean;
}
