import React from 'react'; import type { Except } from 'type-fest'; import type { CommonPropsType, unknownFunction } from '../../types'; import type { DataType } from '../../../configs/components/wd-button'; import '../style'; export declare const WdButton: React.ForwardRefExoticComponent>; export interface WdButtonProps extends CommonPropsType, Except { theme?: DataType['theme'] | 'wechat'; [handlers: `on${string}`]: unknownFunction; }