import { ThemeColors } from "./types"; export declare const defaultThemePalette: (mode: string, themeColors: ThemeColors) => { general: { disabledBackground: string; disabled: string; searchBarBorderColor: string; formControlBackgroundColor: string; mainSectionBackgroundColor: string; headerBackgroundColor: string; headerTextColor: string; cardBackgroundColor: string; focusVisibleBorder: string; sideBarBackgroundColor: string; cardSubtitleColor: string; cardBorderColor: string; tableTitleColor: string; tableSubtitleColor: string; tableColumnTitleColor: string; tableColumnTitleActiveColor: string; tableRowHover: string; tableBorderColor: string; tableBackgroundColor: string; tabsBottomBorderColor: string; }; primary: { main: string; containedButtonBackground: string; textHover: string; contrastText: string; dark: string; mainHover?: undefined; }; secondary: { main: string; containedButtonBackground: string; textHover: string; contrastText: string; dark: string; mainHover?: undefined; }; } | { general: { disabledBackground: string; disabled: string; searchBarBorderColor: string; focusVisibleBorder: string; formControlBackgroundColor: string; mainSectionBackgroundColor: string; headerBackgroundColor: string; headerTextColor: string; cardBackgroundColor: string; sideBarBackgroundColor: string; cardSubtitleColor: string; cardBorderColor: string; tableTitleColor: string; tableSubtitleColor: string; tableColumnTitleColor: string; tableColumnTitleActiveColor: string; tableRowHover: string; tableBorderColor: string; tableBackgroundColor: string; tabsBottomBorderColor: string; }; primary: { main: string; containedButtonBackground: string; mainHover: string; contrastText: string; dark: string; textHover?: undefined; }; secondary: { main: string; containedButtonBackground: string; mainHover: string; contrastText: string; dark: string; textHover?: undefined; }; };