import { AcceptedFiles, FormatType, OperationOptionsCombine, ProcessType, ToFile } from '@modfy/interfaces'; import OperationClass from './OperationClass'; declare class Combine extends OperationClass { to: ToFile; currentFormat: FormatType | undefined; concatFile: string; constructor({ inputFiles, to }: { inputFiles: AcceptedFiles; to: ToFile; }); getCurrentFormat: () => Promise; unpackCurrentFormat: () => { extension: string; ffmpegLib: string; }; setup(processType: ProcessType): Promise; setFFmpegArguments: () => void; setServerOperation: () => void; writeText: () => Promise; writeTextNode: (dst: string, text: string) => Promise; writeTextBrowser: (dst: string, text: string) => Promise; } export default Combine;