import { Config, DataSource, FreTextFunc, Matcher, Nemonic } from './types';
export declare const checkBracket: (brackets: string[], missingBracketIndexes: number[], open: boolean) => void;
export declare const validateMatcher: (matchers: Matcher[], dataSources: DataSource[], matcher: Matcher, activeMatcher: number | null, operators: 'Simple' | 'AgGrid' | 'Complex', orSymnbol: string) => string | null;
export declare const parseText: (text: string, dataSources: DataSource[], func: Nemonic | null, config: Config, pasteFreeTextAction?: FreTextFunc, pasteMatchTimeout?: number) => Promise<Matcher[]>;
