import { JSX } from "solid-js/jsx-runtime"; interface SwitchProps extends JSX.InputHTMLAttributes { label?: string; checked: boolean; onChange: JSX.ChangeEventHandlerUnion; } export declare const SwitchInp: (props: SwitchProps) => JSX.Element; export {};