import type { ParsedObject } from './types'; import { Element } from './Element'; export declare class ServiceDescription extends Element { lang?: string; value?: string; constructor(initialValues?: Partial, ctx?: ParsedObject); formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; }