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