import React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; export type SwitchProps = Omit, "value"> & { value?: string; selected?: boolean; variant?: ComponentVariant; }; declare const Switch: React.ForwardRefExoticComponent & React.RefAttributes>; export default Switch;