/**
 * Connection management hooks for Voxket SDK
 */
/**
 * Hook for connection management
 */
export declare function useVoxketConnection(): {
    isConnected: boolean;
    isConnecting: boolean;
    isDisconnected: boolean;
    error: import('../..').VoxketError | null;
    hasError: boolean;
    connect: () => Promise<void>;
    disconnect: () => Promise<void>;
};
/**
 * Hook for participants management
 */
export declare function useVoxketParticipants(): {
    participants: import('../..').ParticipantInfo[];
    count: number;
    localParticipant: import('../..').ParticipantInfo | undefined;
    remoteParticipants: import('../..').ParticipantInfo[];
};
