/// import { ThemeTypes } from "../theme/types"; import { SwitchType } from "./types"; declare const Switch: ({ click, initialState, activeColor, nonActiveColor, ball, reValidate, theme }: import("./types").ColorType & { click: (e: boolean) => void; initialState: boolean; ball?: "big" | "small" | undefined; reValidate?: boolean | undefined; } & { theme: ThemeTypes; }) => JSX.Element; export default Switch;