import type CheckOptions from "./interfaces/check_options";
import type { CheckReport } from "./interfaces/check_options";
/**
 * Validate an already-translated target file against its source by
 * running the verification pipeline without the preceding translation
 * step. Returns a report listing every key the model flagged as
 * incorrect, along with a suggested correction where available.
 *
 * No files are written.
 */
export declare function check(options: CheckOptions): Promise<CheckReport>;
