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