//#region src/allowlist.d.ts declare const allowlist: readonly string[]; //#endregion //#region src/blocklist.d.ts declare const blocklist: readonly string[]; //#endregion //#region src/detector.d.ts declare enum Level { Low = 0, Medium = 1, High = 2, } declare function detect(content: string, level: Level): boolean; //#endregion //#region src/levels.d.ts declare function checkLow(content: string): boolean; declare function checkMedium(content: string): boolean; declare function checkHigh(content: string): boolean; //#endregion export { Level, allowlist, blocklist, checkHigh, checkLow, checkMedium, detect };