import { AcDbDatabase } from './AcDbDatabase'; import { AcDbSymbolTable } from './AcDbSymbolTable'; import { AcDbViewTableRecord } from './AcDbViewTableRecord'; /** * Symbol table for view table records. * * This class manages view table records which represent named views * within AutoCAD. Views define a saved camera configuration including * view direction, target, and display settings. * * @example * ```typescript * const viewTable = new AcDbViewTable(database); * const view = viewTable.getAt('Front'); * ``` */ export declare class AcDbViewTable extends AcDbSymbolTable { /** * Creates a new AcDbViewTable instance. * * @param db - The database this view table belongs to * * @example * ```typescript * const viewTable = new AcDbViewTable(database); * ``` */ constructor(db: AcDbDatabase); } //# sourceMappingURL=AcDbViewTable.d.ts.map