import { PaperProps } from "@material-ui/core"; export type LabelSwitchProps = { options: { value: string | boolean | number | null; label: string; }[]; value: string; onChange: (newValue: string) => void, className?: string; disabled?: boolean; animate?: boolean; variant?: 'contained' | 'outlined' | 'shadow' }; declare const LabelSwitch: React.ComponentType; export default LabelSwitch;