import { ReceivedShareModel, ShareModel } from '../../sdk-model'; import { ShareTypeEnum } from '../../enum'; import { PageStateModel } from "../common"; declare class ShareStateModel extends ShareModel { copyContent: string; shareType: ShareTypeEnum; folderId: string; fileId: string; guid?: string; version?: number; } declare class ReceivedShareStateModel extends ReceivedShareModel { receivedCreateAt: number; expiration: number; receivedShareId: string; name: string; password: string; privilege: string; type: string; urn: string; copyContent: string; shareType: ShareTypeEnum; active?: boolean; folderId?: string; } declare class SharePageStateModel extends PageStateModel { items: ShareStateModel[]; } declare class ReceivedSharePageStateModel extends PageStateModel { items: ReceivedShareStateModel[]; } export { SharePageStateModel, ShareStateModel, ReceivedShareStateModel, ReceivedSharePageStateModel }; //# sourceMappingURL=share-state-model.d.ts.map