import type { ImprimirQRCodeType, StatusImpressoraType } from './types/tectoysunmi-types'; declare const TecToySunmiPrinterSDK: { ObterStatus: () => Promise; ImprimirTexto: (texto?: string) => void; ImprimirQRCode: (data: ImprimirQRCodeType) => void; ImprimirRAW: (bytes: any, feed_lines?: number) => void; CortarPapel: () => void; AvancarLinha: (linhas?: number) => void; Avancar3Linhas: () => void; }; export default TecToySunmiPrinterSDK;