import type { NgramFeature } from '../feature'; import { Weight } from '../model'; export declare const probaPredictor: (weight: Weight, scale: number) => (features: NgramFeature[], threshold?: number) => number[]; export declare const predictProba: (features: NgramFeature[], threshold?: number) => number[]; export declare const predictor: (weight: Weight, scale: number) => (features: NgramFeature[], threshold?: number) => boolean[]; export declare const predict: (features: NgramFeature[], threshold?: number) => boolean[]; //# sourceMappingURL=predict.d.ts.map