/** * Schematic drawers — logicAnalog. */ import type { App } from '../../../App'; import type { Group } from '../../../shapes/Group'; export declare function drawLogic(app: App, g: Group, kind: string): void; export declare function drawOpAmp(app: App, g: Group, kind?: 'op' | 'inst' | 'comp'): void; export declare function drawIcBox(app: App, g: Group, label: string, pins?: number): void;