import React, { ButtonHTMLAttributes } from 'react'; export type SwitchSize = 'small' | 'medium' | 'large'; export interface SwitchProps extends ButtonHTMLAttributes { /** @default true */ isOn?: boolean; /** @default 'small' */ size?: SwitchSize; width?: number; /** @default 'ON' */ onText?: string; /** @default 'OFF' */ offText?: string; } export declare const Switch: React.ForwardRefExoticComponent>;