/// import type { ComponentBlock } from './types'; import type { Device } from './util/types'; type Props = { cb: ComponentBlock; index: number; device: Device; rowHeight: number; zIndex: number; }; declare function FlexGridItem({ cb, index, device, rowHeight, zIndex }: Props): JSX.Element; export default FlexGridItem;