import BinResult from '../types/BinResult'; import OutputType from '../types/enums/OutputType'; import SymbologyConfig from '../types/SymbologyConfig'; declare function createBuffer(config: SymbologyConfig, barcodeData: string): BinResult; declare function invoke(config: SymbologyConfig, barcodeData: string, outputType: OutputType): Promise; declare function getOutputType(fileName: string): OutputType; declare const binary: { createBuffer: typeof createBuffer; invoke: typeof invoke; getOutputType: typeof getOutputType; }; export default binary;