import { StylinComponentProps } from '@stylin.js/react'; import { HTMLAttributes } from 'react'; import { lightTheme } from '../../theme'; export type BoxElementProps = Omit, 'color' | 'translate'>; export interface BoxProps extends StylinComponentProps, BoxElementProps { as?: keyof JSX.IntrinsicElements; variant?: keyof (typeof lightTheme)['boxes']; }