import type { FileFormat } from '../types-dir/api/file'; /** * This function checks if a file format transformation is supported during translation * @param from - The source file format. * @param to - The target file format. * @returns True if the transformation is supported, false otherwise */ export declare function isSupportedFileFormatTransform(from: FileFormat, to: FileFormat): boolean;