import type { Tags } from '../types/options.js'; export declare const splitTags: (rawTags: string[]) => Tags; export declare const shouldIgnore: (jsDocTags: Set, tags: Tags) => boolean; export declare const getShouldIgnoreHandler: (isProduction: boolean) => (jsDocTags: Set) => boolean; export declare const getShouldIgnoreTagHandler: (tags: Tags) => (jsDocTags: Set) => boolean;