interface ToggleProps { name: string; checked: boolean; setChecked: React.Dispatch>; } export default ToggleProps;