import { ColorProps } from '../../utils/types/types'; import { InputHTMLAttributes } from 'react'; export interface SwitchProps extends InputHTMLAttributes { label?: string; labelDirection?: "left" | "right"; variant?: ColorProps; } declare const Switch: import('react').ForwardRefExoticComponent>; export default Switch;