import { default as React } from 'react'; import { SchemaConditionItem } from '../utils'; export declare function ConditionListItem({ item, nestingLevel, pathPrefix, onDelete, }: { item: SchemaConditionItem | null; nestingLevel: number; pathPrefix: string; onDelete?: () => void; }): React.JSX.Element;