import { Uint8 } from "../values/uint8"; import { BasePrimitive } from "./base-primitive"; export declare class TypeOfUint8 extends BasePrimitive { name: string; create(value: string | null): Uint8; } export declare const TypeUint8: TypeOfUint8;