/** * 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 { TypesHexSecp256k1Signature } from './TypesHexSecp256k1Signature'; import type { TypesOsmosisSignDocLPAdd } from './TypesOsmosisSignDocLPAdd'; /** * * @export * @interface OsmoSignAminoLpAdd200Response */ export interface OsmoSignAminoLpAdd200Response { /** * * @type {TypesOsmosisSignDocLPAdd} * @memberof OsmoSignAminoLpAdd200Response */ signed: TypesOsmosisSignDocLPAdd; /** * * @type {string} * @memberof OsmoSignAminoLpAdd200Response */ serialized: string; /** * * @type {TypesHexSecp256k1Signature} * @memberof OsmoSignAminoLpAdd200Response */ signature: TypesHexSecp256k1Signature; } /** * Check if a given object implements the OsmoSignAminoLpAdd200Response interface. */ export declare function instanceOfOsmoSignAminoLpAdd200Response(value: object): boolean; export declare function OsmoSignAminoLpAdd200ResponseFromJSON(json: any): OsmoSignAminoLpAdd200Response; export declare function OsmoSignAminoLpAdd200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsmoSignAminoLpAdd200Response; export declare function OsmoSignAminoLpAdd200ResponseToJSON(value?: OsmoSignAminoLpAdd200Response | null): any;