import { scale as defaultScale } from './scale'; import swagSystemPalette from './colors/swag'; import swagDarkSystemPalette from './colors/swagDark'; import swagLightSystemPalette from './colors/swagLight'; import swagLightJobsSystemPalette from './colors/swagLightJobs'; import workSystemPalette from './colors/work'; import jobsSystemPalette from './colors/jobs'; import walletSystemPalette from './colors/wallet'; import eBensSystemPalette from './colors/eBens'; import ehWorkDarkSystemPalette from './colors/ehWorkDark'; import ehWorkSystemPalette from './colors/ehWork'; import ehJobsSystemPalette from './colors/ehJobs'; import type { Scale } from './scale'; import type { GradientToken, Gradients, SystemPalette } from './colors/types'; declare const getGlobalTheme: (scale: Scale, systemPalette: SystemPalette) => { colors: { gradients: Gradients; defaultGlobalSurface: string; onDefaultGlobalSurface: string; neutralGlobalSurface: string; mutedOnDefaultGlobalSurface: string; inactiveOnDefaultGlobalSurface: string; disabledOnDefaultGlobalSurface: string; darkGlobalSurface: string; onDarkGlobalSurface: string; overlayGlobalSurface: string; primaryOutline: string; secondaryOutline: string; inactiveOutline: string; disabledOutline: string; error: string; mutedError: string; errorSurface: string; onErrorSurface: string; warning: string; mutedWarning: string; warningSurface: string; onWarningSurface: string; success: string; mutedSuccess: string; successSurface: string; onSuccessSurface: string; info: string; mutedInfo: string; infoSurface: string; onInfoSurface: string; archived: string; mutedArchived: string; archivedSurface: string; onArchivedSurface: string; black?: string; white?: string; primary: string; onPrimary: string; secondary: string; onSecondary: string; defaultSurface: string; highlightedSurface: string; secondaryHighlightedSurface?: string; pressedSurface: string; decorativePrimary: string; decorativePrimarySurface: string; decorativeSecondary?: string; decorativeSecondarySurface?: string; themeMode?: import("./colors/types").ThemeMode; name?: "swagLight" | "swagLightJobs" | "ehWorkDark" | "ehWork" | "ehJobs"; }; fonts: import("./typography").Fonts; fontSizes: import("./typography").FontSizes; lineHeights: import("./typography").FontSizes; borderWidths: import("./borders").BorderWidths; space: import("./space").Space; sizes: import("./sizes").Sizes; radii: import("./borders").Radii; shadows: import("./shadows/types").ShadowPalette; }; type GlobalTheme = ReturnType; export type { GlobalTheme, GradientToken, Gradients, Scale, SystemPalette }; export { getGlobalTheme, defaultScale, swagSystemPalette, swagLightSystemPalette, swagLightJobsSystemPalette, swagDarkSystemPalette, workSystemPalette, jobsSystemPalette, walletSystemPalette, eBensSystemPalette, ehWorkDarkSystemPalette, ehWorkSystemPalette, ehJobsSystemPalette, };