export interface Authenticator {
    readonly deviceId: Uint8Array;
    readonly hashedUserId: Uint8Array;
    credentials(challenge: Uint8Array): Promise<Uint8Array>;
}
