/** * barkd REST API * A simple REST API for barkd, a wallet daemon for integrating bitcoin payments into your app over HTTP. Supports self-custodial Lightning, Ark, and on-chain out of the box. barkd is a long-running daemon best suited for always-on or high-connectivity environments like nodes, servers, desktops, and point-of-sale terminals. All endpoints return JSON. Amounts are denominated in satoshis. * * The version of the OpenAPI document: 0.6.1 * Contact: hello@second.tech * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A flat, data-free discriminator for [ExitState]. The serde representation matches * [ExitState]'s `type` tag (kebab-case). * @export */ export declare const ExitStateKind: { readonly Start: "start"; readonly Processing: "processing"; readonly AwaitingDelta: "awaiting-delta"; readonly Claimable: "claimable"; readonly ClaimInProgress: "claim-in-progress"; readonly Claimed: "claimed"; readonly VtxoAlreadySpent: "vtxo-already-spent"; readonly Canceled: "canceled"; }; export type ExitStateKind = typeof ExitStateKind[keyof typeof ExitStateKind]; export declare function instanceOfExitStateKind(value: any): boolean; export declare function ExitStateKindFromJSON(json: any): ExitStateKind; export declare function ExitStateKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExitStateKind; export declare function ExitStateKindToJSON(value?: ExitStateKind | null): any; export declare function ExitStateKindToJSONTyped(value: any, ignoreDiscriminator: boolean): ExitStateKind;