import type { ParsedObject } from './types'; import { Element } from './Element'; export declare class ContentComponent extends Element { static readonly ALLOWED_CHILDREN: string[]; id?: string; lang?: string; contentType?: string; par?: [w: number, h: number]; constructor(initialValues?: Partial, ctx?: ParsedObject); formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; }