type ValidateMarkdownOutput = {
    isValid: true;
} | {
    isValid: false;
    differences: string;
};
/**
 * Validates if a markdown file matches the expected documentation
 * generated from the environment schema.
 */
export declare const validateMarkdown: (actualMarkdown: string, expectedMarkdown: string) => ValidateMarkdownOutput;
export {};
