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