import { IMutable, Init, IStatic } from "./ICode"; import { Size } from "./IText"; import Type from "./Type"; export * from "./ICode"; export declare class Generic implements IMutable { readonly type: Type.Code; text: string; size: Size; constructor(init: Init); } export declare class Code extends Generic<{}> { } export declare const klass: IStatic; export default Code;