import type { Grader, GraderInput, GraderMetadata, GraderResult } from "../../index.js"; export interface Config { substring: string; case_sensitive?: boolean; negate?: boolean; } export type Metadata = Config & { [key: string]: unknown; }; export declare class TranscriptContainsGrader implements Grader { metadata: GraderMetadata; private readonly negated; constructor(name?: "transcript-contains" | "transcript-not-contains"); /** `transcript-contains 'hello'` — the substring distinguishes instances. */ defaultName(config: Record): string; grade(input: GraderInput): Promise; } //# sourceMappingURL=transcript-contains-grader.d.ts.map