import Notification from './models/notification'; import { WhereOptions } from 'sequelize'; export declare function createNotification(values: object): Promise; export declare function getNotifications(where: WhereOptions, limit?: number): Promise; export declare function getNotificationsCount(where: WhereOptions): Promise; export declare function setNotificationStatus(id: number, status: string): Promise; export declare function getProcessList(where: WhereOptions): Promise;