///
import { Extension } from "../../typings/domain";
export declare class UseSRTP {
static type: number;
static readonly spec: {
type: any;
data: any;
};
type: number;
data: Buffer;
profiles: number[];
mki: Buffer;
constructor(props?: Partial);
static create(profiles: number[], mki: Buffer): UseSRTP;
static deSerialize(buf: Buffer): UseSRTP;
serialize(): Buffer;
static fromData(buf: Buffer): UseSRTP;
get extension(): Extension;
}