import { type ReactElement } from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; import type { SwitchProps } from "./Switch"; type SwitcherProps = { variant?: ComponentVariant; children?: ReactElement[]; selected?: string; onChange?: (value: string) => void; }; declare function Switcher({ variant, selected, onChange, ...rest }: SwitcherProps): import("react/jsx-runtime").JSX.Element; export default Switcher;