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