import { default as dayjs } from 'dayjs'; type INotification = { id: string; readed: number | null; resource: string; created: string | number | dayjs.Dayjs | Date | null | undefined; title: string; content: string; }; type IHeaderNotificationItemProps = { selected: boolean; notification: INotification; onClick: () => void; divider?: boolean; }; declare function HeaderNotificationItem(props: IHeaderNotificationItemProps): import("react/jsx-runtime").JSX.Element; export { HeaderNotificationItem }; export type { INotification }; //# sourceMappingURL=NotificationItem.d.ts.map