/** * Schematic drawers — electromechanical. */ import type { App } from '../../../App'; import type { Group } from '../../../shapes/Group'; export declare function drawSwitch(app: App, g: Group, kind?: 'spst' | 'spdt' | 'dpst' | 'dpdt' | 'push' | 'toggle' | 'slide' | 'dip' | 'rotary' | 'reed' | 'limit' | 'key' | 'estop' | 'nc'): void; export declare function drawRelay(app: App, g: Group): void; export declare function drawMotor(app: App, g: Group, label: string): void; export declare function drawConnector(app: App, g: Group, label: string): void; export declare function drawSensor(app: App, g: Group, label: string): void; export declare function drawMeter(app: App, g: Group, label: string): void;