import type { BoxProps } from "./Box"; export * from "./Box"; export type PolymorphicComponentProps = P & BoxProps; export type PolymorphicComponent = (props: PolymorphicComponentProps) => React.ReactElement | null;