/** * 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 { TypesCosmosCoin } from './TypesCosmosCoin'; /** * * @export * @interface TypesCosmosAminoSignDocFee */ export interface TypesCosmosAminoSignDocFee { /** * * @type {string} * @memberof TypesCosmosAminoSignDocFee */ gas: string; /** * * @type {Array} * @memberof TypesCosmosAminoSignDocFee */ amount: Array; } /** * Check if a given object implements the TypesCosmosAminoSignDocFee interface. */ export declare function instanceOfTypesCosmosAminoSignDocFee(value: object): boolean; export declare function TypesCosmosAminoSignDocFeeFromJSON(json: any): TypesCosmosAminoSignDocFee; export declare function TypesCosmosAminoSignDocFeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TypesCosmosAminoSignDocFee; export declare function TypesCosmosAminoSignDocFeeToJSON(value?: TypesCosmosAminoSignDocFee | null): any;