export declare type flameTheme = 'colors.white' | 'colors.black' | 'colors.maple-50' | 'colors.maple-100' | 'colors.maple-200' | 'colors.maple-300' | 'colors.maple-400' | 'colors.maple-500' | 'colors.maple-600' | 'colors.maple-700' | 'colors.maple-800' | 'colors.maple-900' | 'colors.maple-1000' | 'colors.blue-50' | 'colors.blue-100' | 'colors.blue-200' | 'colors.blue-300' | 'colors.blue-400' | 'colors.blue-500' | 'colors.blue-600' | 'colors.blue-700' | 'colors.blue-800' | 'colors.blue-900' | 'colors.blue-1000' | 'colors.green-50' | 'colors.green-100' | 'colors.green-200' | 'colors.green-300' | 'colors.green-400' | 'colors.green-500' | 'colors.green-600' | 'colors.green-700' | 'colors.green-800' | 'colors.green-900' | 'colors.green-1000' | 'colors.orange-50' | 'colors.orange-100' | 'colors.orange-200' | 'colors.orange-300' | 'colors.orange-400' | 'colors.orange-500' | 'colors.orange-600' | 'colors.orange-700' | 'colors.orange-800' | 'colors.orange-900' | 'colors.orange-1000' | 'colors.gray-50' | 'colors.gray-100' | 'colors.gray-200' | 'colors.gray-300' | 'colors.gray-400' | 'colors.gray-500' | 'colors.gray-600' | 'colors.gray-700' | 'colors.gray-800' | 'colors.gray-850' | 'colors.gray-900' | 'colors.gray-950' | 'colors.gray-1000' | 'colors.primary' | 'colors.secondary' | 'colors.danger' | 'colors.warning' | 'colors.textBody' | 'colors.textHeading' | 'colors.textDimmed' | 'colors.dimmed' | 'colors.disabled' | 'colors.bodyBg' | 'breakpoints.0' | 'breakpoints.1' | 'fontFamily.serif' | 'fontFamily.sans-serif' | 'fontFamily.monospace' | 'space.0' | 'space.1' | 'space.2' | 'space.3' | 'space.4' | 'space.5' | 'space.6' | 'space.7' | 'space.8' | 'space.9' | 'space.10' | 'lineHeights.0' | 'lineHeights.1' | 'lineHeights.2' | 'lineHeights.3' | 'lineHeights.4' | 'lineHeights.5' | 'lineHeights.6' | 'lineHeights.7' | 'lineHeights.8' | 'lineHeights.9' | 'lineHeights.10' | 'fontSizes.text-xxl' | 'fontSizes.text-xl' | 'fontSizes.text-l' | 'fontSizes.text' | 'fontSizes.text-s' | 'fontSizes.text-xs' | 'fontSizes.text-xxs' | 'fontSizes.xxlarge' | 'fontSizes.xlarge' | 'fontSizes.large' | 'fontSizes.' | 'fontSizes.small' | 'fontSizes.xsmall' | 'fontSizes.xxsmall' | 'fontWeights.regular' | 'fontWeights.bold' | 'letterSpacings.0' | 'letterSpacings.1' | 'letterSpacings.2' | 'letterSpacings.3' | 'shadows.0' | 'shadows.1' | 'shadows.2' | 'shadows.3' | 'shadows.4' | 'innerShadows.0' | 'innerShadows.1' | 'innerShadowsN.0' | 'borderShadows.0' | 'radii.radius-1' | 'radii.radius-2' | 'radii.radius-circle' | 'transition.transition-duration-fast' | 'transition.transition-duration-base' | 'transition.transition-duration-slow'; declare type ThemePath = T | flameTheme; declare function themeGet(path: ThemePath, defaultValue?: string): (props: { theme: any; }) => any; export { themeGet };