import { SpacingScaleKeys } from '../types.mjs'; import '../colors/types.mjs'; /** * Determines if the theme is a base theme * * @param theme string * @returns "light" | "dark */ declare const isBaseTheme: (theme: string) => theme is "light" | "dark"; declare const generateSpacingScale: (spacingUnit: number) => Partial>; declare function createSpacingUnits(prefix: string): Record; export { createSpacingUnits, generateSpacingScale, isBaseTheme };