type source_types = "upload" | "microphone" | "webcam" | "clipboard" | "webcam-video" | null; type $$ComponentProps = { sources: Partial[]; active_source?: Partial; handle_clear?: () => void; handle_select?: (source_type: Partial) => void; }; declare const SelectSource: import("svelte").Component<$$ComponentProps, {}, "active_source">; type SelectSource = ReturnType; export default SelectSource;