import { AcApContext } from '../app'; import { AcEdCommand } from '../editor'; /** * Command for creating a new CAD document from a template. * * This command opens a predefined template drawing (acadiso.dxf) from * a CDN to create a new document. The template provides: * - Standard ISO drawing settings * - Predefined layers and styles * - Default drawing setup * * This is equivalent to "Quick New" functionality in traditional CAD applications, * providing users with a ready-to-use drawing environment. * * @example * ```typescript * const qNewCmd = new AcApQNewCmd(); * qNewCmd.execute(context); // Creates new document from template * ``` */ export declare class AcApQNewCmd extends AcEdCommand { /** * Executes the quick new command. * * Opens the ISO template from the CDN to create a new document * with standard drawing settings. * * @param _context - The application context (unused in this command) */ execute(_context: AcApContext): Promise; } //# sourceMappingURL=AcApQNewCmd.d.ts.map