import React from "react"; import { ProjectsApi, RootCollectionInfo } from "../api/projects"; export declare function AutoSetUpCollectionsButton({ projectsApi, projectId, askConfirmation, small, suggestions, onClick, onSuccess, onNoCollections, onError, color, disabled }: { projectsApi: ProjectsApi; projectId: string; onClick?: () => void; onSuccess?: () => void; onNoCollections?: () => void; onError?: () => void; askConfirmation?: boolean; small?: boolean; suggestions?: RootCollectionInfo[]; color?: "primary" | "secondary" | "text" | "error" | "neutral"; disabled?: boolean; }): React.JSX.Element;