import { LPA_InitOptions, LPAPI } from "lpapi-ble"; export declare class LPAPIFactory { private static api?; /** * 获取标签打印的时候所用到的所有蓝牙接口。 */ static getApiList(): string[]; /** * 获取LPAPI接口实例。 */ static getInstance(options?: LPA_InitOptions): LPAPI; } /** * 获取所需要的 js-sdk 相关函数列表。 */ export declare const getApiList: () => string[]; /** * 获取接口实例对象。 */ export declare const getInstance: (options?: LPA_InitOptions) => LPAPI; export * from "lpapi-ble";