import React, { ReactNode } from 'react'; import './Box.css'; type PropertyTypes = { top?: string; bottom?: string; left?: string; right?: string; }; export type BoxProps = { children: ReactNode; component?: keyof JSX.IntrinsicElements; className?: string; margin?: PropertyTypes; padding?: PropertyTypes; width?: string; }; declare const Box: (props: BoxProps) => React.JSX.Element; export default Box;