import type { RawCardData } from "./raw-card-data"; type TransmitFn = (command: number[], expectedLength: number) => Promise; export declare function createCommandTransmitter(transmit: TransmitFn): (command: number[]) => Promise; export declare function readCardData(sendRawCommand: (command: number[]) => Promise): Promise; export {};