export declare type AccountState = 'PENDING' | 'ENABLED' | 'DISABLED' | 'CLOSED'; export declare type AccountType = 'FIAT' | 'LOYALTY'; export declare type Account = { id?: string; createdAt?: Date; updatedAt?: Date; activeAt?: Date; stateId?: AccountState; ownerId?: string; currencyISO?: string; completeBalance?: string; availableBalance?: string; incompleteCredits?: string; incompleteDebits?: string; disputedCredits?: string; disputedDebits?: string; feeDebits?: string; withheldBalance?: string; tags?: Array; annotations?: { [x: string]: string; }; type?: AccountType; }; export declare type AccountList = { results?: Array; }; export declare type Create = { ownerId: string; currencyISO: string; annotations?: { [x: string]: string; }; tags?: Array; }; export declare type Transition = { id: string; fromStateId?: AccountState; toStateId: AccountState; annotations?: { [x: string]: string; }; tags?: Array; };