import { ReactElement } from 'react'; import { SwitchProps, StatefulSwitchProps } from './types'; export declare const Switch: { (props: SwitchProps): ReactElement; displayName: string; }; export declare const StatefulSwitch: { (props: StatefulSwitchProps): ReactElement; displayName: string; };