import * as React from 'react';
export interface Props {
    className?: string;
    mods?: string;
    iconName?: string;
    text?: string;
    iconStyle?: React.CSSProperties;
    style?: React.CSSProperties;
    testId?: string;
    children?: React.ReactNode;
}
declare const SelectCard: React.FunctionComponent<Props>;
export default SelectCard;
