import { Inbox } from "./inboxes"; type ShareLinks = { admin: string; viewer: string; }; type Permissions = { can_read: boolean; can_update: boolean; can_destroy: boolean; can_leave: boolean; }; export type Project = { id: number; name: string; share_links: ShareLinks; inboxes: Inbox[]; permissions: Permissions; }; export {}; //# sourceMappingURL=projects.d.ts.map