import React from 'react'; import type { SwitchProps } from './interface'; export interface SwitchState { checked: boolean; } declare const SwitchComponent: React.ForwardRefExoticComponent> & { __BYTE_SWITCH: boolean; }; export default SwitchComponent; export type { SwitchProps };