import * as React from 'react'; import { ActionButtonProps } from './ActionButton.types'; /** * @deprecated Komponenten er erstattet av InlineButton fra "@skatteetaten/ds-buttons" * * visibleName ActionButton (Aksjonsknapp) */ export declare class ActionButton extends React.PureComponent { static NORMAL: string; static LARGE: string; static defaultProps: { color: string; disabled: boolean; border: boolean; icon: undefined; iconSize: string; onClick: undefined; ariaLabel: string; }; render(): JSX.Element; }