import React from 'react'; import type { ButtonType } from '../../constants'; export type ButtonProps = { className?: string; type?: ButtonType; disabled?: boolean; onClick?: (event: React.MouseEvent) => void; onFocus?: (event: React.FocusEvent) => void; onBlur?: (event: React.FocusEvent) => void; children: React.ReactNode; name?: string; id?: string; form?: string; formAction?: string; formEncType?: string; formMethod?: string; formNoValidate?: boolean; formTarget?: string; autoFocus?: boolean; }; export declare const Button: React.ForwardRefExoticComponent>; //# sourceMappingURL=Button.d.ts.map