import { Element } from './element'; type ScriptType = 'sub' | 'super'; export declare class Script extends Element { constructor(type: ScriptType); static fromAttr(value: unknown): Script; } export {};