import React from "react"; interface SwitchV2Props { checked?: boolean; onChange?: (e: React.FormEvent) => void; color?: string; } declare const SwitchV2: ({ checked, onChange, color }: SwitchV2Props) => React.JSX.Element; export default SwitchV2;