import { default as React } from 'react'; import { SwitchProps as AriaSwitchProps } from 'react-aria-components'; interface SwitchBaseProps { small?: boolean; } type SwitchProps = SwitchBaseProps & AriaSwitchProps; declare function Switch({ small, className, ...props }: Readonly): React.JSX.Element; export default Switch;