import { ReactNode } from "react"; type ModTooltipErrorProps = { parent: ReactNode; content: string; }; type ModTooltipInfoProps = { parent: ReactNode; content: string; }; export type { ModTooltipErrorProps, ModTooltipInfoProps };