import type { ParsedObject, Range } from './types'; import { Element } from './Element'; export declare abstract class URLType extends Element { sourceURL?: string; range?: Range; formatParams(initialValues?: Partial, ctx?: ParsedObject): void; verifyAttributes(ctx: ParsedObject): void; verifyChildren(ctx: ParsedObject): void; get serializedProps(): ParsedObject; }