import { IRestriction } from '../util/types'; import { TagsModel } from './model.tags'; export declare class SharingModel extends TagsModel { shareWith: (user: string, restriction?: IRestriction) => Promise; unshareWith: (user: string) => Promise; getSharedWith: () => Promise; }