/// import { TextCardProps } from './PropsType'; import './style.less'; declare function TextCard(props: TextCardProps): JSX.Element; declare namespace TextCard { var defaultProps: { icon: string; showIcon: boolean; }; } export default TextCard; export { TextCardProps } from './PropsType';