/// import type { ComponentBlock } from '../sections/CustomSection/types'; import type { Device } from '../sections/CustomSection/util/types'; import type { Block } from 'publ-echo/dist/lib/GridLayoutEditor/group'; type Props = { cb: ComponentBlock; index: number; device: Device; rowHeight: number; zIndex: number; maxCols: number; block: Block; isParentGroupPinned: boolean; style?: React.CSSProperties; }; declare function FlexGridItem({ cb, index, device, rowHeight, zIndex, style, maxCols, block, isParentGroupPinned }: Props): JSX.Element; export default FlexGridItem;