import { FC } from 'react'; import { ButtonProps } from '@tarojs/components/types/Button'; declare type ButtonType = 'primary' | 'normal' | 'plain'; declare type ButtonSize = 'l' | 'm' | 's' | 'xs' | 'xxs'; declare type BaseButtonProps = Omit & { circle?: number | string; icon?: string; iconSize?: number | string; isFull?: boolean; isBold?: boolean; type?: ButtonType; size?: ButtonSize; height?: number | string; width?: number | string; }; declare const YgButton: FC; export default YgButton;