import PropTypes from 'prop-types'; import { ButtonProps } from "../button/Button"; export interface ButtonWrapperProps extends ButtonProps { inherit?: boolean; } export declare const ButtonWrapper: { ({ children, onClick, className, inherit, buttonRef, ...props }: ButtonWrapperProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { children: PropTypes.Validator; onClick: PropTypes.Validator<(...args: any[]) => any>; inherit: PropTypes.Requireable; className: PropTypes.Requireable; }; };