import * as React from 'react'; import { IGlobalAttributes, IParent, IReferenceable, ICustomizable, IAnimatable } from '../core'; export interface LegacyButtonTagProps extends IGlobalAttributes, IParent, IReferenceable, ICustomizable, IAnimatable { name?: string; value?: string; type?: React.ButtonHTMLAttributes['type']; autofocus?: string; disabled?: boolean; onClick?: (e: React.MouseEvent) => void; } export declare function LegacyButtonTag(props: LegacyButtonTagProps): JSX.Element;