export type CodeLineType = 'normal' | 'command' | 'success' | 'error'; export type CodeLine = { text: string; type?: CodeLineType; }; export type PlainCodeBoxMetadata = { lines: CodeLine[]; showCopyButton?: boolean; language?: string; };