import React, { CSSProperties } from 'react';
export interface SelectableCardProps {
    label?: string;
    image?: string;
    cardStyle?: CSSProperties;
    selected?: boolean;
    onCardSelected?: () => void;
    onCardDeselected?: () => void;
    size?: 'sm' | 'lg';
}
export default function SelectableCard(props: SelectableCardProps): React.JSX.Element;
//# sourceMappingURL=SelectableCard.d.ts.map