import type { Rolldown } from "vite"; type RolldownError = Rolldown.RolldownError; export declare function prepareError(err: Error | RolldownError): { message: string; stack: string; id: string | undefined; frame: string; plugin: string | undefined; pluginCode: string | undefined; loc: { column: number; file?: string; line: number; } | undefined; }; export declare function logInfoBox(address: string, explorer?: string): void; export declare function drawMarkoBox(message: string, options?: LogoOptions): string[]; export interface LogoOptions { fill?: boolean; color?: boolean; } export declare function drawMarkoLogo(options?: LogoOptions): { lines: string[]; width: number; }; export {};