import type { ReceiveThpMessageProps } from './receive'; export type SendThpMessageProps = Omit & { chunks: Buffer[]; }; export declare const sendThpMessage: ({ thpState, skipAck, chunks, apiWrite, apiRead, signal, graceful, logger, }: SendThpMessageProps) => Promise | { success: false; error: "Unable to open device" | "A transfer error has occurred." | "device not found" | "device disconnected during action" | "unexpected error" | "Aborted by signal" | "Aborted by timeout"; message?: string; } | { success: false; error: any; message: string | undefined; }>; //# sourceMappingURL=send.d.ts.map