interface ListOptions { } interface RowsOptions { filter?: string[]; sort?: string; limit?: string; after?: string; } interface PatchOptions { set?: string[]; } export declare function mountTableList(mountId: string, _options: ListOptions): Promise; export declare function mountTableRows(mountId: string, slug: string, options: RowsOptions): Promise; export declare function mountTableLatest(mountId: string, slug: string): Promise; export declare function mountTableByTag(mountId: string, tag: string, options: RowsOptions): Promise; export declare function mountTablePatch(mountId: string, slug: string, rowId: string, options: PatchOptions): Promise; export declare function mountTableAppend(mountId: string, slug: string, options: { rows?: string; }): Promise; export {};