export declare function collectionAppend(uuid: string, options: { data?: string; file?: string; }): Promise; export declare function collectionRows(uuid: string, options: { limit?: string; after?: string; sortBy?: string; sortOrder?: string; filter?: string[]; }): Promise; export declare function collectionUpdate(uuid: string, rowId: string, options: { data: string; }): Promise; export declare function collectionDelete(uuid: string, options: { rows: string; }): Promise;