import Client from '../../Client'; import InboxItem from './InboxItem'; export default class InboxManager { readonly client: Client; inbox: InboxItem[] | null; constructor(client: Client); fetch(options?: { limit?: number; offset?: number; }): Promise; } //# sourceMappingURL=InboxManager.d.ts.map