import React, { ReactNode } from "react"; type PhantomProps = { children?: ReactNode; [x: string]: any; }; export declare const Phantom: ({ children, ...props }: PhantomProps) => React.ReactNode; export {};