/// import type { ComponentBlock } from '../sections/CustomSection/types'; import type { Device } from '../sections/CustomSection/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;