import { type ForwardRefRenderFunction, type HTMLAttributes, type ReactNode, forwardRef, } from 'react'; export type AsideProps = HTMLAttributes & { /** * The aside contents. */ children: ReactNode; }; const AsideWithRef: ForwardRefRenderFunction = ( props, ref ) =>