import { Config, Field, Matcher, Option, RangeSide, Value } from '../../../../../../../src/types'; export declare const getOperator: (matcher: Matcher, config: Config, first?: boolean) => string; export declare const getComparison: (matcher: Matcher, config: Config, matcherField: Field | null) => string; export declare const getMatcherValue: (matcher: Matcher, fromTo?: RangeSide) => string; export declare const craeteMatcher: (option: Option, comparison: string, operator: string | null, matcher?: Matcher, isRange?: boolean, valueArray?: Value[], textArray?: string[], hasError?: boolean) => Matcher; export declare const handleCopy: (event: React.ClipboardEvent, matchers?: Matcher | Matcher[]) => void;