import { AcDbObjectId, AcGePoint3dLike } from '@mlightcad/data-model'; import { AcEdPromptResult } from './AcEdPromptResult'; import { AcEdPromptStatus } from './AcEdPromptStatus'; /** * Result of a prompt that asks the user to pick a single entity. */ export declare class AcEdPromptEntityResult extends AcEdPromptResult { /** Gets the entity that the user picked. */ readonly objectId?: AcDbObjectId; /** Gets the point that was used to pick the entity. */ readonly pickedPoint?: AcGePoint3dLike; constructor(status: AcEdPromptStatus, objectId?: AcDbObjectId, pickedPoint?: AcGePoint3dLike); } //# sourceMappingURL=AcEdPromptEntityResult.d.ts.map