/** * 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 { TypesOsmosisSignDocLPAdd } from './TypesOsmosisSignDocLPAdd'; /** * * @export * @interface OsmoSignAminoLpAddRequest */ export interface OsmoSignAminoLpAddRequest { /** * * @type {TypesOsmosisSignDocLPAdd} * @memberof OsmoSignAminoLpAddRequest */ signDoc: TypesOsmosisSignDocLPAdd; /** * * @type {string} * @memberof OsmoSignAminoLpAddRequest */ signerAddress: string; } /** * Check if a given object implements the OsmoSignAminoLpAddRequest interface. */ export declare function instanceOfOsmoSignAminoLpAddRequest(value: object): boolean; export declare function OsmoSignAminoLpAddRequestFromJSON(json: any): OsmoSignAminoLpAddRequest; export declare function OsmoSignAminoLpAddRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OsmoSignAminoLpAddRequest; export declare function OsmoSignAminoLpAddRequestToJSON(value?: OsmoSignAminoLpAddRequest | null): any;