import Options from './options' export interface Message { content: string id?: string avatar?: string visible?: boolean } export interface Notification extends Message { id: string; onClick?: () => void; } export interface State { options: Options interactive: boolean visible: boolean open: boolean unread: number notifications: Notification[] }