import type { GraderFn } from "../types.js"; /** Options for the `exactMatch` grader. */ export interface ExactMatchOptions { /** Trim leading/trailing whitespace before comparing. @default true */ readonly trim?: boolean | undefined; /** Perform a case-sensitive comparison. @default true */ readonly caseSensitive?: boolean | undefined; } /** Checks that output.text exactly matches the expected text. */ export declare function exactMatch(expected: string, options?: ExactMatchOptions): GraderFn; //# sourceMappingURL=exact-match.d.ts.map