interface ListOptions { } interface RowsOptions { filter?: string[]; sort?: string; limit?: string; after?: string; } interface PatchOptions { set?: string[]; } export declare function mountCollectionList(mountId: string, _options: ListOptions): Promise; export declare function mountCollectionRows(mountId: string, slug: string, options: RowsOptions): Promise; export declare function mountCollectionLatest(mountId: string, slug: string): Promise; export declare function mountCollectionByTag(mountId: string, tag: string, options: RowsOptions): Promise; export declare function mountCollectionPatch(mountId: string, slug: string, rowId: string, options: PatchOptions): Promise; export {};