import React from 'react'; import { PropsControlTypes, ControlUnionHandler, ComponentPreviewProps } from "../../../../../types"; import './table-item.scss'; interface Props { data?: string[] | number[] | ComponentPreviewProps; propName: string; propValue: unknown; initialPropValue: unknown; controlType?: PropsControlTypes; onPropChange: ControlUnionHandler; } export declare const TableItem: React.FC; export {};