/// import type { ComponentBlock } from '../sections/CustomSection/types'; import type { Device } from '../sections/CustomSection/util/types'; type Props = { cbProps: ComponentBlock; device: Device; index: number; rowHeight: number; }; export default function ComponentBlockMatcher({ cbProps, device, index }: Props): JSX.Element; export {};