import React from 'react';
import { Links } from './shared';
interface Props {
    children: React.ReactElement;
    links: Links;
    onError: (error: string) => void;
    onComplete: (completeUrl: string) => Promise<void>;
    onInitiate: () => void;
    onLog: (...statements: string[]) => void;
}
export default function SEBankIDSameDeviceForeground(props: Props): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
export {};
