/** * App头部工具 ICON 按钮 */ import { RendererProps } from 'amis/lib/factory'; import React from 'react'; import { JumpToOption } from "../../routes/exports"; declare type HeadItemProps = JumpToOption & { className?: string; icon?: string; faIcon?: string; children?: any; tip?: string; onClick?: any; href?: string; body?: any; }; declare type Props = Partial & { itemProps: HeadItemProps; }; declare const _default: React.FunctionComponent; export default _default;