import { SpaceProp } from '../TotallyMoneyTheme'; export type SpacingKeys = keyof typeof spacing; export type SpacingValues = (typeof spacing)[keyof typeof spacing]; export type SpacingTypes = SpacingKeys | SpacingValues | number | string | '0' | null | { small: SpacingKeys; medium: SpacingKeys; large: SpacingKeys; }; export declare const spacing: SpaceProp;