import type { ParsedObject } from './types'; import { Element } from './Element'; export declare class ProducerReferenceTime extends Element { id?: string; inband?: boolean; type?: string; applicationScheme?: string; wallClockTime?: string; presentationTime?: string; constructor(initialValues?: Partial, ctx?: ParsedObject); formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; }