import { FC, CSSProperties } from 'react'; import { clickProps } from '../../PitBimwinApp'; import { BtnProps } from '../../useBtnOpt'; interface PitToolbarMenuProps { toolbarMenuList: BtnProps[][] | undefined; btnClickCallBack(itemData: BtnProps, index: number, type?: clickProps): void; style?: CSSProperties; } declare const PitToolbarMenu: FC; export default PitToolbarMenu;