import { type MouseEventHandler, type ReactNode, type RefObject } from "react"; type Value = string | number | boolean; type Option = { value: Value; label: string | ((props: { textClass: string; btnClass: string; handleClick: MouseEventHandler; value: Value; isActive: boolean; activeClass: string; ref: RefObject<(HTMLElement | null)[]>; }) => ReactNode); }; type Props = { value?: Value; options: Option[]; onChange?: (value: Value) => void; }; export declare function UiSwitch({ onChange, options, value }: Props): any; export {};