import { ReactNode } from 'react'; export type Props = { children: ReactNode; value: T; }; export declare const SwitchItem: (props: Props) => null;