import { HTMLAttributes } from 'react'; import { SpaceType, ViewPort } from '@/types/cskTypes'; export type ContainerProps = HTMLAttributes & { backgroundColor?: string; spacing?: SpaceType | ViewPort; border?: string | ViewPort; fluidContent?: boolean; height?: string | ViewPort; wrapperClassName?: string; maxWidth?: string; }; export { Container as default } from './container';