import { Props as ButtonProps } from './Button'; export interface Props extends ButtonProps { /** * 加载中状态 */ loading?: boolean; /** * 进度条的厚度 */ thickness?: number; } export default function LoadingButton(props: Props): JSX.Element;