import React from "react"; import { ProjectsApi, RootCollectionInfo } from "../api/projects"; export declare function CollectionSetupSelectionDialog({ open, onClose, suggestions, projectsApi, projectId, onSuccess, onError }: { open: boolean; onClose: () => void; suggestions: RootCollectionInfo[]; projectsApi: ProjectsApi; projectId: string; onSuccess?: () => void; onError?: () => void; }): React.JSX.Element;