import { Text as VText, type ITextGraphicAttribute } from './../../vrender'; import type { BaseTableAPI } from '../../ts-types/base-table'; type ITextOption = { marginTop?: number; marginRight?: number; marginBottom?: number; marginLeft?: number; } & ITextGraphicAttribute; export declare class Text extends VText { constructor(options: ITextOption); getSize(table: BaseTableAPI): void; } export {};