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