import { FC, PropsWithChildren } from 'react'; import { ButtonProps } from '@tarojs/components/types/Button'; export declare type IButtonType = 'primary' | 'info' | 'danger' | 'default'; export interface IButtonProps extends PropsWithChildren> { type?: IButtonType; disabled?: boolean; loading?: boolean; round?: boolean; full?: boolean; plain?: boolean; } declare const Button: FC; export default Button;