import { FormatterConfig } from '../../types'; /** * Converts diff data to the specified format * @param config: Configuration options for the target format * @param config.data The diff data * @param config.outputType The intended type of the output * @param config.markdownSubtype the format to display the dropdown data in * @returns formatted diff output */ export default function toProperFormat(config: FormatterConfig): T | string;