/// import type { ComponentBlock } from '../sections/CustomSection/types'; import type { CB_PLACEMENT_PROP_SPECS, 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; showPinned?: boolean; style?: React.CSSProperties; isParentGroupHeightVariable: boolean; block: Block; }; declare function FlexGridItem({ cb, index, device, rowHeight, zIndex, showPinned, block, style, isParentGroupHeightVariable }: Props): JSX.Element; export declare function getGridAreaFromCB(props: CB_PLACEMENT_PROP_SPECS, device: Device): string; export default FlexGridItem;