import type { NormalizerFn } from '../matches';
export type CommonQueryOptions = {
    /** Should query include elements hidden from accessibility. */
    includeHiddenElements?: boolean;
    /** RTL-compatibile alias to `includeHiddenElements`. */
    hidden?: boolean;
};
export type TextMatchOptions = {
    exact?: boolean;
    normalizer?: NormalizerFn;
};
