import { Primitives } from './primatives';
import { TypeSymbols } from '../constants';
export declare class Stringpr extends Primitives {
    private readonly string;
    _type: TypeSymbols;
    constructor(string: string);
    static fromBytes(buf: Uint8Array): [Stringpr, Uint8Array];
    toJSON(): string;
    toBytes(): Uint8Array;
    value(): string;
}
//# sourceMappingURL=stringpr.d.ts.map