export declare type DisputeState = 'PENDING' | 'CANCELLED' | 'ACCEPTED' | 'UNDER_NEGOTIATION' | 'FAVOURS_RECIPIENT' | 'ARBITRATION' | 'FAVOURS_SENDER' | 'SETTLED_ARBITRATION'; export declare type CreateDisputeState = 'PENDING' | 'ACCEPTED'; export declare type Dispute = { id?: string; createdAt?: Date; updatedAt?: Date; stateId?: DisputeState; reason: string; amount?: string; txId?: string; fromOwnerId: string; toOwnerId: string; }; export declare type DisputeList = { results?: Array; }; export declare type Create = { txId: string; stateId: CreateDisputeState; reason: string; amount?: string; }; export declare type TransitionOptions = { amount?: string; }; export declare type Transition = { id: string; fromStateId?: DisputeState; toStateId: DisputeState; options?: TransitionOptions; };