import { type PortalProps } from '@rc-component/portal'; import * as React from 'react'; export interface PlaceholderProps extends Pick { domRef: React.RefObject; className: string; style: React.CSSProperties; fallbackDOM: () => HTMLElement | null; } declare const Placeholder: React.ForwardRefExoticComponent>; export default Placeholder;