import { AbstractAuthentication, AuthenticationMethodUN } from './abstractAuthentication'; import { AuthenticateInterface } from '../interface'; export declare class SignedUNChallenge extends AbstractAuthentication implements AuthenticationMethodUN { TYPE: string; getTokenProof(request: AuthenticateInterface): Promise; }