export declare const FORBIDDEN_PHRASES: readonly ["second brain", "federated second brain", "exocortex", "AI memory", "federated memory"]; export type ForbiddenPhrase = (typeof FORBIDDEN_PHRASES)[number]; export interface Match { phrase: ForbiddenPhrase; matched: string; index: number; line: number; } export declare function scanForbiddenPhrases(text: string, phrases?: readonly string[]): Match[]; //# sourceMappingURL=positioning.d.ts.map