/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { TypesCosmosAminoSignDoc } from './TypesCosmosAminoSignDoc'; import type { TypesHexSecp256k1Signature } from './TypesHexSecp256k1Signature'; /** * * @export * @interface CosmosSignAmino200Response */ export interface CosmosSignAmino200Response { /** * * @type {TypesCosmosAminoSignDoc} * @memberof CosmosSignAmino200Response */ signed: TypesCosmosAminoSignDoc; /** * * @type {string} * @memberof CosmosSignAmino200Response */ serialized: string; /** * * @type {TypesHexSecp256k1Signature} * @memberof CosmosSignAmino200Response */ signature: TypesHexSecp256k1Signature; } /** * Check if a given object implements the CosmosSignAmino200Response interface. */ export declare function instanceOfCosmosSignAmino200Response(value: object): boolean; export declare function CosmosSignAmino200ResponseFromJSON(json: any): CosmosSignAmino200Response; export declare function CosmosSignAmino200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosmosSignAmino200Response; export declare function CosmosSignAmino200ResponseToJSON(value?: CosmosSignAmino200Response | null): any;