import { CodeBlockTheme } from './code-styling'; declare const getShikiBackgroundColors: (codeBlockTheme: CodeBlockTheme, html: string | undefined, children: unknown) => { light: string | undefined; dark: string | undefined; } | undefined; declare const getBackgroundColorsFromHtml: (html: string, defaultBgColors: { light: string; dark: string; }) => { light: string | undefined; dark: string | undefined; }; declare const getBackgroundColorsFromChildren: (children: unknown, defaultBgColors: { light: string; dark: string; }) => { light: string | undefined; dark: string | undefined; }; export { getShikiBackgroundColors, getBackgroundColorsFromHtml, getBackgroundColorsFromChildren, }; //# sourceMappingURL=get-shiki-background-colors.d.ts.map