import { type Anchors, type DigitCluster } from './scan.js'; import type { PiiKind, PiiMatch } from './types.js'; export interface RecognizerContext { text: string; anchors: Anchors; clusters: readonly DigitCluster[]; contextWindow: number; } export declare function findEmails(ctx: RecognizerContext): PiiMatch[]; export declare function findIbans(ctx: RecognizerContext): PiiMatch[]; export declare function findCards(ctx: RecognizerContext): PiiMatch[]; export declare function findPhones(ctx: RecognizerContext): PiiMatch[]; export declare function findGermanTaxIds(ctx: RecognizerContext): PiiMatch[]; export declare function findIps(ctx: RecognizerContext): PiiMatch[]; export declare const RECOGNIZERS: Readonly PiiMatch[]>>; //# sourceMappingURL=recognizers.d.ts.map