import { type OutputStream } from "./output-stream.js"; type CliStream = OutputStream; export type ReadMarkdownFile = (filepath: string, encoding: "utf8") => Promise; export type WriteMarkdownFile = (filepath: string, source: string, options: { encoding: "utf8"; }) => Promise; export type RunExampleFileOptions = { fix?: boolean; readFile?: ReadMarkdownFile; stderr?: CliStream; stdout?: CliStream; writeFile?: WriteMarkdownFile; }; export declare function runExampleFile(filepath: string, options?: RunExampleFileOptions): Promise; export {};