export * from './constants'; export * from './log-level'; type logFun = (content: string) => void; declare const output: { newline: () => void; error: (content: unknown, tryMessage?: string) => void; warn: logFun; success: logFun; completed: logFun; info: logFun; debug: logFun; }; export default output; //# sourceMappingURL=index.d.ts.map