import React from 'react'; import './index.scss'; declare type TextButtonType = 'primary' | 'secondary'; declare type TextButtonSize = 'big' | 'small'; interface TextButtonProps { type?: TextButtonType; size?: TextButtonSize; disable?: boolean; loading?: boolean; text: string; extraCls?: string; preIcon?: JSX.Element; suffixIcon?: JSX.Element; onClick?: (e: any) => void; } declare const TextButton: React.FunctionComponent; export default TextButton;