// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 export interface RTNCore { computeModPow(payload: { base: string; exponent: string; divisor: string; }): Promise; computeS(payload: { g: string; x: string; k: string; a: string; b: string; u: string; }): Promise; getDeviceName(): Promise; }