import { IExtendedMutable as INodeExtendedMutable } from "../INode"; import Children from "./Children"; import { Alignment, IMutable, Init, IStatic } from "./ISpan"; import Type from "./Type"; export * from "./ISpan"; export declare class Generic implements IMutable { readonly type: Type.Span; alignment: Alignment; children: Children>; constructor(init: Init); } export declare class Span extends Generic<{}> { } export declare const klass: IStatic; export default Span;