import { FC } from 'react'; import PropTypes from 'prop-types'; declare const propTypes: { /** Content of the card */ children: PropTypes.Validator; /** Use the full size of the card. */ noPadding: PropTypes.Requireable; selected: PropTypes.Requireable; onClick: PropTypes.Validator<(...args: any[]) => any>; /** Use this to group cards on the left. */ hasGroupLeft: PropTypes.Requireable; /** Use this to group cards on the right. */ hasGroupRight: PropTypes.Requireable; }; declare const SelectableCard: FC>; export default SelectableCard;