/** * 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 { TypesCosmosAminoSignDocUnDelegate } from './TypesCosmosAminoSignDocUnDelegate'; import type { TypesHexSecp256k1Signature } from './TypesHexSecp256k1Signature'; /** * * @export * @interface CosmosSignAminoUndelegate200Response */ export interface CosmosSignAminoUndelegate200Response { /** * * @type {TypesCosmosAminoSignDocUnDelegate} * @memberof CosmosSignAminoUndelegate200Response */ signed: TypesCosmosAminoSignDocUnDelegate; /** * * @type {string} * @memberof CosmosSignAminoUndelegate200Response */ serialized: string; /** * * @type {TypesHexSecp256k1Signature} * @memberof CosmosSignAminoUndelegate200Response */ signature: TypesHexSecp256k1Signature; } /** * Check if a given object implements the CosmosSignAminoUndelegate200Response interface. */ export declare function instanceOfCosmosSignAminoUndelegate200Response(value: object): boolean; export declare function CosmosSignAminoUndelegate200ResponseFromJSON(json: any): CosmosSignAminoUndelegate200Response; export declare function CosmosSignAminoUndelegate200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosmosSignAminoUndelegate200Response; export declare function CosmosSignAminoUndelegate200ResponseToJSON(value?: CosmosSignAminoUndelegate200Response | null): any;