import { Path } from 'glob';

/**
 * Get the output file for the schema file
 *
 * @param file - The schema file
 * @param extension - The extension of the output file
 * @returns The output file path
 */
declare const getOutputFile: (file: Path, extension: "json" | "d.ts" | "md") => string;

export { getOutputFile };
