export declare const FRONTIER_SERVICE = 33555721; export declare const FRONTIER_METHOD = 1; export declare const FRONTIER_FRAME_TYPE_NORMAL = 0; export declare const FRONTIER_SKIP_FRAME_TYPES: Set; export declare const FRONTIER_PAYLOAD_ENCODING = "binary"; export declare const FRONTIER_PAYLOAD_TYPE = "application/x-protobuf"; export interface FrontierFrameInput { seqId: bigint | number; logId?: bigint | number; service: number; method: number; payload: Buffer; payloadEncoding?: string; payloadType?: string; logIdNew?: string; msgId?: string; frameType?: number; } export interface DecodedFrontierFrame { seqId?: bigint; logId?: bigint; service?: number; method?: number; payload?: Buffer; payloadEncoding?: string; payloadType?: string; logIdNew?: string; msgId?: string; frameType?: number; skipped: boolean; } export declare function encodeFrontierFrame(input: FrontierFrameInput): Buffer; export declare function decodeFrontierFrame(data: Buffer): DecodedFrontierFrame; //# sourceMappingURL=frontier.d.ts.map