import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type SelectableCardProps = { aria?: { [key: string]: string; }; checked?: boolean; children?: React.ReactChild[] | React.ReactChild; className?: string; customIcon?: { [key: string]: SVGElement; }; dark?: boolean; data?: { [key: string]: string; }; disabled?: boolean; error?: boolean; icon?: boolean; id?: string; inputId?: string; multi?: boolean; name?: string; onChange: (event: React.FormEvent) => void; text?: string; value?: string; variant?: string; } & GlobalProps; declare const SelectableCard: (props: SelectableCardProps) => JSX.Element; export default SelectableCard;