import React from 'react'; import type { Polymorphic } from '@hitagi/utils/types'; type PhantomOwnProps = { children(): React.ReactNode; fallback?: React.ReactNode; }; declare const Phantom: Polymorphic.ForwardRefComponent<'div', PhantomOwnProps>; export default Phantom;