import type { ButtonProps } from 'antd/lib/button'; import React from 'react'; import type { IconCfg } from '../../Icon/PropsType'; import { LingXiEdFC } from '@lingxiteam/types'; declare const WrapperButton: ({ children }: Record) => React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export interface MyButtonEDProps extends ButtonProps { name?: string; iconPosition?: string; selfSpan?: any; style?: any; icon?: IconCfg; _component?: any; classification?: any; autoProcessFlow?: any; flowProcessResult?: any; iconFile?: any; hasIcon?: boolean; block?: boolean; loadingText?: string; btnText?: string; basicStatus?: string; btnIcon?: any; } declare const ButtonED: LingXiEdFC; export default ButtonED; export { WrapperButton };