///
export declare class RenegotiationIndication {
static type: number;
static readonly spec: {
type: any;
data: any;
};
type: number;
data: number;
constructor(props?: Partial);
static createEmpty(): RenegotiationIndication;
static deSerialize(buf: Buffer): RenegotiationIndication;
serialize(): Buffer;
get extension(): {
type: number;
data: Buffer;
};
}