import type { ProblemMarkdownFrontMatter } from '../types/problem.js'; /** * Whether a standard stdio problem is judgeable without test cases: static-analysis rules still * judge the submitted code, and manual scoring intentionally accepts every submission. */ export declare function judgesWithoutTestCases(frontMatter: ProblemMarkdownFrontMatter): boolean; export declare function readProblemMarkdownFrontMatter(problemDir: string): Promise;