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