/** * 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. */ /** * * @export */ export declare const BTCInputScriptType: { readonly cashaddr: "cashaddr"; readonly bech32: "bech32"; readonly p2pkh: "p2pkh"; readonly p2sh: "p2sh"; readonly external: "external"; readonly p2wpkh: "p2wpkh"; readonly p2sh_p2wpkh: "p2sh-p2wpkh"; }; export type BTCInputScriptType = typeof BTCInputScriptType[keyof typeof BTCInputScriptType]; export declare function BTCInputScriptTypeFromJSON(json: any): BTCInputScriptType; export declare function BTCInputScriptTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): BTCInputScriptType; export declare function BTCInputScriptTypeToJSON(value?: BTCInputScriptType | null): any;