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