import { ClassName } from "@helpers/types"; import { InputHTMLAttributes } from "react"; export interface ToggleProps extends Omit, "size" | "onChange">, ClassName { size?: "sm" | "md"; labelText?: string; supportingText?: string; disabled?: boolean; value: string; checked: boolean; defaultChecked?: boolean; onChange(value: boolean): void; ariaLabel?: string; }