import type { ImprimirQRCodeType, StatusImpressoraType } from './types/tectoysunmi-types';
declare const NativeModuleTectToySunmiPrinterSDK: {
    ObterStatus: () => Promise<StatusImpressoraType>;
    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 NativeModuleTectToySunmiPrinterSDK;
