import React from 'react'; export interface LayerConditionPropsI { value?: any[][]; onChange?: (value: any[][]) => void; } declare const LayerCondition: React.FC; export default LayerCondition;