import { type SwitchProps } from '@chakra-ui/react'; import { SizeType } from '../../../types'; import React from 'react'; interface Props extends SwitchProps { size?: SizeType; } declare const Component: React.ForwardRefExoticComponent>; export { Component as Switch, type Props as SwitchProps, };