import { RGB } from "../../enums/rgb.js"; type Situation = "RESULT" | "PROCESS" | "MESSAGE" | "ERROR" | "DEBUGGER"; interface SpecialLogProps { message: string; headerColor?: RGB; scope?: string; situation: Situation; } declare const specialLog: ({ message, situation, headerColor, scope, }: SpecialLogProps) => Promise; declare const logNumberedList: (array: (string | number)[], isLog?: boolean) => string; export { specialLog, logNumberedList };