import { transformerColorizedBrackets } from '@shikijs/colorized-brackets'; type ColorizedBracketsOptions = Parameters[0]; export interface ShikiPluginConfig { theme?: string; line_number?: boolean; beautify?: boolean; highlight_copy?: boolean; highlight_lang?: boolean; highlight_height_limit?: number; is_highlight_shrink?: boolean; colorized_brackets?: boolean | ColorizedBracketsOptions; css_cdn?: string; js_cdn?: string; copy?: { success?: string; error?: string; no_support?: string; }; } export interface ResolvedShikiPluginConfig { theme?: string; lineNumber: boolean; beautify: boolean; highlightCopy: boolean; highlightLang: boolean; highlightHeightLimit?: number; isHighlightShrink?: boolean; colorizedBrackets?: boolean | ColorizedBracketsOptions; cssCdn?: string; jsCdn?: string; copy: { success: string; error: string; noSupport: string; }; } export declare function resolvePluginConfig(config?: ShikiPluginConfig): ResolvedShikiPluginConfig | null; export {};