import { ButtonProps as AntdButtonProps } from 'antd'; export interface ButtonProps extends AntdButtonProps { } declare const Button: { (props: ButtonProps): JSX.Element; title: string; propsDef: ({ key: string; name: string; type: string; defaultValue: string; element?: undefined; options?: undefined; } | { key: string; name: string; type: string; defaultValue?: undefined; element?: undefined; options?: undefined; } | { key: string; name: string; type: string; element: JSX.Element; defaultValue?: undefined; options?: undefined; } | { key: string; name: string; type: string; options: { value: string; text: string; }[]; defaultValue: string; element?: undefined; })[]; style: boolean; }; export default Button;