import React from "react"; type Props = { backgroundColor: string; isOpen: boolean; onClose: () => void; children?: React.ReactNode; }; export declare function IntroductionPopupBase(props: Props): React.JSX.Element; export {};