///
import { web3 } from '@project-serum/anchor';
import { Schema } from 'borsh';
export declare class NameService {
static HEADER_LEN: number;
parentName: web3.PublicKey;
owner: web3.PublicKey;
class: web3.PublicKey;
data: Buffer | undefined;
static schema: Schema;
constructor(obj: {
parentName: Uint8Array;
owner: Uint8Array;
class: Uint8Array;
});
static retrieve(nameAccountKey: web3.PublicKey): Promise;
}