import { AcApContext } from '../../app'; import { AcEdCommand } from '../../editor'; /** * Command to create point objects continuously. * * Behavior is aligned with AutoCAD POINT: * - Prompt for a point. * - Create one `AcDbPoint` immediately after each confirmed point. * - Continue prompting until the user cancels the command. * - Point display is controlled by the current `PDMODE` and `PDSIZE`. */ export declare class AcApPointCmd extends AcEdCommand { constructor(); execute(context: AcApContext): Promise; } //# sourceMappingURL=AcApPointCmd.d.ts.map