import { IGetInboxMessagesParams } from "@trycourier/client-graphql"; import { Brand, IInboxMessagePreview } from "@trycourier/core"; import { OnEvent } from "@trycourier/react-provider"; export interface IInbox { brand?: Brand; from?: number; isLoading?: boolean; isOpen?: boolean; lastMarkedAllRead?: number; lastMessagesFetched?: number; messages?: Array; onEvent?: OnEvent; pinned?: Array; recentlyArchiveMessageIds?: Array; searchParams?: IGetInboxMessagesParams; startCursor?: string; tenantId?: string; unreadMessageCount?: number; view?: string | "preferences"; } //# sourceMappingURL=types.d.ts.map