import { default as React } from 'react'; type EditProps = { onClick: () => void; name: string; localName: string; localLabel: string; }; type HideShowProps = { onClick: () => void; label: string; mode: 'show' | 'hide'; }; export declare const Button: { Base: ({ className, disabled, ...props }: React.ButtonHTMLAttributes) => import("react/jsx-runtime").JSX.Element; Edit: ({ onClick, name, localName, localLabel }: EditProps) => import("react/jsx-runtime").JSX.Element; HideShow: ({ onClick, label, mode }: HideShowProps) => import("react/jsx-runtime").JSX.Element; }; export {};