export interface InputDeviceInfo { deviceId: string; groupId: string; kind: string; label: string; } export interface DeviceOption { value: InputDeviceInfo; label: string; } export declare const useClientDevices: () => { audioInputSourceList: DeviceOption[] | null; audioOutputSourceList: DeviceOption[] | null; videoSourceList: DeviceOption[] | null; }; //# sourceMappingURL=useClientDevices.d.ts.map