import { XcpFrameCodecType } from './XcpFrameCodecType';
export declare class XcpSessionKey {
    codec: XcpFrameCodecType;
    deviceToServer: Uint8Array;
    serverToDevice: Uint8Array;
    constructor(codec: XcpFrameCodecType, deviceToServer: Uint8Array, serverToDevice: Uint8Array);
}
