import { Context } from '~server/data/interfaces'; export declare const getNotifiersLogs: { infoStart: string; infoSuccess: string; infoEnd: string; errorEnd: string; infoHandlePrivateUsage: string; infoEndPrivateUsage: string; infoSuccessPrivateUsage: string; infoHandleCustomLogicUsage: string; infoEndCustomLogicUsage: string; infoSuccessCustomLogicUsage: string; }; declare const getNotifiers: (context: Context) => Promise<{ status: boolean; data?: undefined; } | { status: boolean; data: any[]; }>; export default getNotifiers;