import { CodeError } from '@iotize/common/error'; export declare class APDUError extends CodeError { static responseCodeError(responseCode: Uint8Array, data: Uint8Array): void; static frameSizePayloadTooSmall(expectedSize: number, frame: Uint8Array): APDUError; static frameSizeTooSmall(frame: Uint8Array, minSize: number): APDUError; frame: Uint8Array; constructor(code: APDUError.Code, message: string, frame: Uint8Array); } export declare namespace APDUError { enum Code { APDUSizeTooSmall = "APDUErrorSizeTooSmall", APDUResponseCodeError = "APDUErrorResponseCode" } }