import AuthorItemWithSubLabel from "./AuthorWithSubLabel" declare global { export interface AuthorItemData { _id: any name: string profilePicture?: string isSubscribe?: boolean isOwner?: boolean countSubscriber?: number bookSample?: BookItemData[] bookCount?: number viewCount?: number } } export { AuthorItemWithSubLabel }