import { FC } from 'react'; import { Spacing } from '@react-senior/foundation'; interface IColorProps { hexCode: string; width?: keyof typeof Spacing; height?: keyof typeof Spacing; } declare const Color: FC; export default Color;