/** * 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 { TypesHexBytesLower } from './TypesHexBytesLower'; /** * * @export * @interface UtxoSignTransaction200Response */ export interface UtxoSignTransaction200Response { /** * * @type {TypesHexBytesLower} * @memberof UtxoSignTransaction200Response */ serializedTx: TypesHexBytesLower; } /** * Check if a given object implements the UtxoSignTransaction200Response interface. */ export declare function instanceOfUtxoSignTransaction200Response(value: object): boolean; export declare function UtxoSignTransaction200ResponseFromJSON(json: any): UtxoSignTransaction200Response; export declare function UtxoSignTransaction200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UtxoSignTransaction200Response; export declare function UtxoSignTransaction200ResponseToJSON(value?: UtxoSignTransaction200Response | null): any;