///
import { TezosAddress } from '../TezosAddress';
export declare class TezosSaplingAddress extends TezosAddress {
readonly raw: Buffer;
readonly diversifierIndex?: string | undefined;
private constructor();
static fromViewingKey(viewingKey: string, index?: Buffer | string | number): Promise;
static fromRaw(raw: Buffer, diversifierIndex?: Buffer): Promise;
static fromValue(value: string, diversifierIndex?: string): Promise;
static next(viewingKey: string, current: TezosSaplingAddress): Promise;
static isZetAddress(address: string): boolean;
}