import { PaletteColor } from '@mui/material'; import { default as React } from 'react'; export interface OptionCardProps { isSelected: boolean; backgroundColorWhenNotSelected?: string | PaletteColor; backgroundColorWhenSelected?: string | PaletteColor; className?: string; onClick?: () => void; } export declare const OptionCard: React.FunctionComponent<{ children: React.ReactNode; } & OptionCardProps>;