import { PropsWithChildren } from 'react'; interface ISwitchListItem { readonly optionKey: string; readonly value: string; readonly isActive: boolean; readonly onClick: (optionKey: string) => void; } declare const SwitchListItem: ({ optionKey, value, isActive, onClick, children, ...props }: PropsWithChildren) => JSX.Element; export default SwitchListItem;