import HtmlNode from '../Extension/HtmlNode'; interface BankIdSignSameDeviceProps { readonly autoLaunchUrl?: string; readonly errorMessage?: string; onClick?: () => void; } declare class BankIdSignSameDevice extends HtmlNode { private readonly props; constructor(element: HTMLElement | null, props: BankIdSignSameDeviceProps); render(): void; } export default BankIdSignSameDevice;