import React from 'react';
import './AuthMethodButton/AuthMethodButton.css';
import { Action } from '../context';
import { AuthMethodButtonLogoProps } from './AuthMethodButton/Logo';
import { Language } from '../utils';
export declare type PopupParams = {
    acrValue: string;
    onHide: () => void;
};
export declare type PopupOption = boolean | ((options: PopupParams) => boolean | React.ReactElement);
export interface AuthMethodButtonProps {
    acrValue: string;
    href?: string;
    onClick?: React.MouseEventHandler;
    children?: React.ReactNode;
    'data-testid'?: string;
    className?: string;
    redirectUri?: string;
    popup?: PopupOption;
    /**
     * base64 image string, e.x. data:image/png;base64,
     * or a ReactElement
     */
    logo?: AuthMethodButtonLogoProps["logo"];
    /**
     * Impacts the button text rendered if no text is provided via props.children
     */
    language?: Language;
    /**
     * Impacts the button text rendered if no text is provided via props.children
     */
    action?: Action;
    /**
     * Will ammend the login_hint parameter with `message:{base64(message)}` which will set a login/aprove message where available (Danish MitID).
     */
    message?: string;
    userAgent?: string;
}
export default function AuthMethodButton(props: AuthMethodButtonProps): import("react/jsx-runtime").JSX.Element;
