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