import React from 'react'; import { DOMProps, ControlProps, QAProps } from '../types'; export declare type SwitchSize = 'm' | 'l'; export interface SwitchProps extends ControlProps, DOMProps, QAProps { size?: SwitchSize; content?: React.ReactNode; children?: React.ReactNode; title?: string; } export declare const Switch: React.ForwardRefExoticComponent>;