export declare class Transaction { private id; private amount; private desc; private notes; private created; private type; private currency; static fromJson(obj: any): Transaction; toJson(): any; constructor(id: string, amount: number, desc: string, notes: string, created: string, type: string, currency: string); getId(): string; getCost(): number; getDescription(): string; }