import { JSX } from 'react'; import { ButtonProps } from './Button.types'; /** * Button * * @see [Storybook](https://skatteetaten.github.io/designsystemet/?path=/docs/komponenter-button--docs) - Teknisk dokumentasjon * @see [Stil og tone](https://www.skatteetaten.no/stilogtone/designsystemet/komponenter/button/) - Brukerveiledning */ export declare const Button: { ({ ref, id, className, lang, "data-testid": dataTestId, spinnerTitle, svgPath, variant, accessKey, disabled, form, href, type, ariaDescribedby, ariaCurrent, hasSpinner, isExternal, onBlur, onClick, onFocus, children, }: ButtonProps): JSX.Element; displayName: string; };