/**
 * Collection of parse-time error messages and error factories.
 */
export declare const PARSE_ERRORS: {
    EMPTY_QR: string;
    INVALID_TLV_FORMAT: (value: string) => string;
    INVALID_LENGTH: (lengthStr: string, tag: string) => string;
    EXCEEDS_AVAILABLE: (tag: string) => string;
    UNSUPPORTED_MODE: (mode: string) => string;
};
