import { CrossfireFrame } from "../frame"; import { UnsupportedOrInvalid } from "./unsupported-or-invalid"; export declare class EspNowMessage { /** uint8 - Used for Seat Position of the Pilot */ val1: number; /** uint8 - Used for the Current Pilots Lap */ val2: number; /** 15 characters for the lap time current/split */ val3: string; /** 15 characters for the lap time current/split */ val4: string; /** Free text of 20 character at the bottom of the screen */ freeText: string; syncByte: number; constructor( /** uint8 - Used for Seat Position of the Pilot */ val1?: number, /** uint8 - Used for the Current Pilots Lap */ val2?: number, /** 15 characters for the lap time current/split */ val3?: string, /** 15 characters for the lap time current/split */ val4?: string, /** Free text of 20 character at the bottom of the screen */ freeText?: string, syncByte?: number); static get payloadSize(): number; get frameType(): 34; get crossfireFrame(): CrossfireFrame; static fromFrame(frame: CrossfireFrame): EspNowMessage | UnsupportedOrInvalid; } //# sourceMappingURL=esp-now-message.d.ts.map