import { CadValueType } from './CadValueType.js'; import { CadValueUnitType } from './CadValueUnitType.js'; export declare class CadValue { flags: number; format: string; formattedValue: string; get isEmpty(): boolean; set isEmpty(value: boolean); units: CadValueUnitType; value: unknown; valueType: CadValueType; setValue(value: unknown, valueType?: CadValueType): void; toString(): string; } export { CadValueUnitType } from './CadValueUnitType.js'; export { CadValueType } from './CadValueType.js'; //# sourceMappingURL=CadValue.d.ts.map