/** * 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 { StdTxDelegateValue } from './StdTxDelegateValue'; /** * * @export * @interface StdTxDelegate */ export interface StdTxDelegate { /** * * @type {StdTxDelegateValue} * @memberof StdTxDelegate */ value: StdTxDelegateValue; /** * * @type {string} * @memberof StdTxDelegate */ type: StdTxDelegateTypeEnum; } /** * @export */ export declare const StdTxDelegateTypeEnum: { readonly cosmos_sdk_MsgDelegate: "cosmos-sdk/MsgDelegate"; }; export type StdTxDelegateTypeEnum = typeof StdTxDelegateTypeEnum[keyof typeof StdTxDelegateTypeEnum]; /** * Check if a given object implements the StdTxDelegate interface. */ export declare function instanceOfStdTxDelegate(value: object): boolean; export declare function StdTxDelegateFromJSON(json: any): StdTxDelegate; export declare function StdTxDelegateFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxDelegate; export declare function StdTxDelegateToJSON(value?: StdTxDelegate | null): any;