import { FC } from 'react'; import { Column } from '@component-controls/components'; import { ComponentsBlockContainerProps } from '../BlockContainer/components/ComponentsBlockContainer'; export interface PropsTableOwnProps { /** * extra custom columns passed to the PropsTable. */ extraColumns?: Column[]; /** * if true, will flatten the group by */ flat?: boolean; } export declare type PropsTableProps = PropsTableOwnProps & Omit; /** * Displays the component's properties as well as configurable controls to interact with the component. */ export declare const PropsTable: FC; export { PropsTable as Props };