import type { DiagnosticCodeHighlight } from '@atlaspack/diagnostic'; type CodeFramePadding = { before: number; after: number; }; type CodeFrameOptionsInput = Partial; type CodeFrameOptions = { useColor: boolean; syntaxHighlighting: boolean; maxLines: number; padding: CodeFramePadding; terminalWidth: number; language?: string; }; export default function codeFrame(code: string, highlights: Array, inputOpts?: CodeFrameOptionsInput): string; export {};