import type { ParsedObject } from './types'; import { Element } from './Element'; export declare class ExtendedBandwidth extends Element { static readonly ALLOWED_CHILDREN: string[]; vbr?: boolean; constructor(initialValues?: Partial, ctx?: ParsedObject); formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; } export declare class ModelPair extends Element { bufferTime?: number; bandwidth?: number; constructor(initialValues?: Partial, ctx?: ParsedObject); formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; }