Files
video-gen/video-gen-admin/node_modules/@rc-component/tour/lib/Placeholder.d.ts
T
2026-05-25 17:08:18 +08:00

11 lines
475 B
TypeScript

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