import { IMutable, Init, IStatic, Level } from "./IHeading"; import Type from "./Type"; export * from "./IHeading"; export declare class Generic implements IMutable { readonly type: Type.Heading; text: string; localizedText: string | undefined; level: Level; constructor(init: Init); } export declare class Heading extends Generic<{}> { } export declare const klass: IStatic; export default Heading;