import { BoxProps } from "./Box"; export { Box } from "./Box"; export type PolymorphicComponentProps = P & BoxProps; export type PolymorphicComponent = < E extends React.ElementType = D >( props: PolymorphicComponentProps, ) => React.ReactElement | null;