import type { ThemeConfig } from "../types"; export interface DeprecatedRHDH10to12ThemeColors { /** * primaryColor Configuration for the instance * The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color() */ primaryColor?: string; /** * Header Theme color Configuration for the instance * The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color() */ headerColor1?: string; /** * Header Theme color Configuration for the instance * The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color() */ headerColor2?: string; /** * Navigation Side Bar Indicator color Configuration for the instance * The following formats are supported: #nnn, #nnnnnn, rgb(), rgba(), hsl(), hsla(), color() */ navigationIndicatorColor?: string; } export declare const migrateThemeConfig: (themeConfig: ThemeConfig & DeprecatedRHDH10to12ThemeColors) => ThemeConfig;