import React from 'react'; import './index.less'; interface Props { color?: string; pid: string; properties: string[]; visible: boolean; form: any; disabled: boolean; configColor?: boolean; deleteItem: (pid: string) => void; openColorPanel?: (e: any, pid: string) => void; emitPropertyConfigChange?: (values: object) => void; } declare const StyleConfigPropertyItem: React.FC; export default StyleConfigPropertyItem;