import { ICollectionRow } from './RpcCache'; import RpcApi from './index'; export default class RpcCollection { private readonly api; readonly name: string; private readonly _data; constructor(api: RpcApi, name: string, data?: ICollectionRow, cache?: boolean); author(): Promise; allowNotify(): Promise; authorizedAccounts(): Promise; notifyAccounts(): Promise; marketFee(): Promise; data(): Promise; toObject(): Promise; }