import { PushReadableStream } from "@yume-chan/stream-extra"; import type { AsyncExactReadable, StructValue } from "@yume-chan/struct"; import type { ScrcpyDeviceMessageParser } from "../../base/index.js"; export declare const UHidOutputDeviceMessage: import("@yume-chan/struct").Struct<{ id: import("@yume-chan/struct").NumberField; data: import("@yume-chan/struct").Field, string, never, Uint8Array>; }, undefined, import("@yume-chan/struct").FieldsValue<{ id: import("@yume-chan/struct").NumberField; data: import("@yume-chan/struct").Field, string, never, Uint8Array>; }>>; export type UHidOutputDeviceMessage = StructValue; export declare class UHidOutputStream extends PushReadableStream implements ScrcpyDeviceMessageParser { #private; readonly id = 2; constructor(); parse(_id: number, stream: AsyncExactReadable): Promise; close(): void; error(e?: unknown): void; } //# sourceMappingURL=uhid-output-stream.d.ts.map