import type { FC } from 'react'; import type { PropertyItemProps } from './type'; export interface ComponentSchema { component: string; props?: Record; } export declare const PropertyItem: FC;