import type { InputMode } from "../types";
interface SourceModeSwitchProps {
value: InputMode;
onChange: (mode: InputMode) => void;
disabled?: boolean;
}
export function SourceModeSwitch({
value,
onChange,
disabled,
}: SourceModeSwitchProps) {
return (
);
}