import { AuthClient } from '../client'; import { SecurityKey } from '../types'; import { ActionErrorState, ActionLoadingState, ActionSuccessState } from './types'; export interface AddSecurityKeyHandlerResult extends ActionErrorState, ActionSuccessState { key?: SecurityKey; } export interface AddSecurityKeyState extends AddSecurityKeyHandlerResult, ActionLoadingState { } export declare const addSecurityKeyPromise: ({ backendUrl, interpreter }: AuthClient, nickname?: string) => Promise; //# sourceMappingURL=addSecurityKey.d.ts.map