import * as React from 'react'; import { AdaptableApi } from '../../Api/AdaptableApi'; import { AdaptableModule } from '../../AdaptableState/Common/Types'; interface EditorInputWithWhereClauseProps { type: 'observable' | 'aggregatedBoolean'; module: AdaptableModule; value: string; onChange: (value: string) => void; testData: any; isFullExpression?: boolean; api: AdaptableApi; } declare function EditorInputWithWhereClause(props: EditorInputWithWhereClauseProps): React.JSX.Element; export default EditorInputWithWhereClause;