import type { ComponentChild } from 'preact'; export interface VideoSourceSelectProps { currentDeviceId: string | MediaStreamTrack | null | undefined; videoSources: MediaDeviceInfo[]; onChangeVideoSource: (deviceId: string) => void; } export default function VideoSourceSelect({ currentDeviceId, videoSources, onChangeVideoSource, }: VideoSourceSelectProps): ComponentChild; //# sourceMappingURL=VideoSourceSelect.d.ts.map