import { ButtonProps as TButtonProps } from '@tarojs/components/types/Button'; import CompCommon from '../../common/type'; declare type TaroButtonProps = Pick; export interface ButtonProps extends TaroButtonProps, CompCommon { type?: string; fill?: boolean; full?: boolean; size?: 'large' | 'normal' | 'small' | 'mini'; round?: string; color?: string; fillColor?: string; border?: boolean; borderColor?: string; radius?: number; customStyle?: object; disabled?: boolean; onClick?: Function; } export {};