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