import { AcDbDatabase } from './AcDbDatabase'; import { AcDbDimStyleTableRecord } from './AcDbDimStyleTableRecord'; import { AcDbSymbolTable } from './AcDbSymbolTable'; /** * Symbol table for dimension style table records. * * This class manages dimension style table records which represent dimension styles * within the drawing database. Dimension styles define the appearance and behavior * of dimension entities, including text formatting, arrow styles, extension lines, * and other dimension-specific properties. * * @example * ```typescript * const dimStyleTable = new AcDbDimStyleTable(database); * const dimStyle = dimStyleTable.getAt('Standard'); * ``` */ export declare class AcDbDimStyleTable extends AcDbSymbolTable { /** * Creates a new AcDbDimStyleTable instance. * * @param db - The database this dimension style table belongs to * * @example * ```typescript * const dimStyleTable = new AcDbDimStyleTable(database); * ``` */ constructor(db: AcDbDatabase); } //# sourceMappingURL=AcDbDimStyleTable.d.ts.map