import React from 'react'; import type { ToolkitItem } from './constants'; import { BuiltInToolkitType } from './constants'; /** * determine the toolkitItem use built-in toolkit or not */ export declare const isToolkitType: (toolkitItem: ToolkitItem) => toolkitItem is BuiltInToolkitType; /** * export toolkit component */ export declare const Toolkit: React.NamedExoticComponent<{ toolkitItem: ToolkitItem; refresh?: (() => void) | undefined; }>;