/** * 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 { TypesOsmosisSignDocLPRemove } from './TypesOsmosisSignDocLPRemove'; /** * * @export * @interface OsmoSignAminoLpRemove200Response */ export interface OsmoSignAminoLpRemove200Response { /** * * @type {TypesOsmosisSignDocLPRemove} * @memberof OsmoSignAminoLpRemove200Response */ signed: TypesOsmosisSignDocLPRemove; /** * * @type {string} * @memberof OsmoSignAminoLpRemove200Response */ serialized: string; /** * * @type {TypesHexSecp256k1Signature} * @memberof OsmoSignAminoLpRemove200Response */ signature: TypesHexSecp256k1Signature; } /** * Check if a given object implements the OsmoSignAminoLpRemove200Response interface. */ export declare function instanceOfOsmoSignAminoLpRemove200Response(value: object): boolean; export declare function OsmoSignAminoLpRemove200ResponseFromJSON(json: any): OsmoSignAminoLpRemove200Response; export declare function OsmoSignAminoLpRemove200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsmoSignAminoLpRemove200Response; export declare function OsmoSignAminoLpRemove200ResponseToJSON(value?: OsmoSignAminoLpRemove200Response | null): any;