import './index.css'; export type CharcoalSwitchProps = { onChange?: (checked: boolean) => void; }; type InputProps = React.HTMLProps; export type SwitchInputProps = CharcoalSwitchProps & Omit; declare const SwitchInput: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default SwitchInput; //# sourceMappingURL=index.d.ts.map