import { HelpAction } from './HelpButton'; import './style.scss'; type Props = { onClose: () => void; helpActions?: HelpAction[]; }; export default function HelpModal({ onClose, helpActions }: Props): import("react").JSX.Element; export {};