import { theme as baseTheme } from '@chakra-ui/react'; import { colors } from './colors'; import { semanticTokens } from './semanticTokens'; export type UITheme = Omit & { colors: typeof colors; semanticTokens: typeof semanticTokens; }; export declare const theme: UITheme;