export declare abstract class Secret {
    abstract get raw(): Uint8Array;
    get hexa(): string;
    get uniqueId(): string;
}
