import React from 'react'; import type { OldSwitchProps } from './converter.old'; export type SwitchProps = OldSwitchProps; export declare const Switch: React.ForwardRefExoticComponent & { isOn?: boolean | undefined; } & React.RefAttributes>;