import { OverlayProps } from "../internal/types"; import React from "react"; type OnSuccess = (s: { notebookUuid: string; token: string; }) => void; declare const Onboarding: ({ isOpen, onClose, onSuccess, onCancel, appName, workspaceLabel, }: OverlayProps<{ onSuccess: OnSuccess; onCancel: () => void; appName?: string | undefined; workspaceLabel?: string | undefined; }>) => React.JSX.Element; export default Onboarding;