export declare const METHOD_COLOR: Record; interface PrintLogOption { note?: string; timestamp?: boolean; labelAlign?: 'left' | 'right' | 'center'; labelLen?: number; labelForegroundColor?: string; labelBackgroundColor?: string; noteForegroundColor?: string; } declare function printLog(label: string, url: string, option?: PrintLogOption): void; export default printLog;