declare class ADNLAESParams {
    private _bytes;
    constructor();
    get bytes(): Uint8Array;
    get rxKey(): Uint8Array;
    get txKey(): Uint8Array;
    get rxNonce(): Uint8Array;
    get txNonce(): Uint8Array;
    get padding(): Uint8Array;
    get hash(): Uint8Array;
}
export { ADNLAESParams };
