import { CreateBankNoteInputType, Currency, DeleteBankNoteInputType, GetAsset, GetBankNote, UpdateBankNoteInputType, UpsertBankNoteInputType } from "../../../generated/graphql.workspace"; export declare abstract class BankNoteApi { abstract getBankNotes(userId: number, workspaceId: string, ids: string[]): Promise; abstract createBankNotes(userId: number, workspaceId: string, inputs: CreateBankNoteInputType[]): Promise; abstract updateBankNotes(userId: number, workspaceId: string, inputs: UpdateBankNoteInputType[]): Promise; abstract upsertBankNotes(userId: number, workspaceId: string, inputs: UpsertBankNoteInputType[]): Promise; abstract deleteBankNotes(userId: number, workspaceId: string, inputs: DeleteBankNoteInputType[]): Promise; abstract getAsset(userId: any, bankNoteId: string): Promise; abstract getCurrency(userId: any, bankNoteId: string): Promise; }