@tscircuit/props 0.0.152 → 0.0.154

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -8164,6 +8164,421 @@ declare const resonatorProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.
8164
8164
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
8165
8165
  }>;
8166
8166
 
8167
+ interface StampboardProps extends BoardProps {
8168
+ leftPinCount?: number;
8169
+ rightPinCount?: number;
8170
+ topPinCount?: number;
8171
+ bottomPinCount?: number;
8172
+ leftPins?: string[];
8173
+ rightPins?: string[];
8174
+ topPins?: string[];
8175
+ bottomPins?: string[];
8176
+ pinPitch?: number | string;
8177
+ innerHoles?: boolean;
8178
+ }
8179
+ declare const stampboardProps: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
8180
+ pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8181
+ pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8182
+ pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8183
+ schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8184
+ schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8185
+ schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8186
+ layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
8187
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
8188
+ }, "strip", z.ZodTypeAny, {
8189
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8190
+ }, {
8191
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8192
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8193
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8194
+ }>>;
8195
+ footprint: z.ZodOptional<z.ZodType<Footprint, z.ZodTypeDef, Footprint>>;
8196
+ }, {
8197
+ name: z.ZodOptional<z.ZodString>;
8198
+ children: z.ZodOptional<z.ZodAny>;
8199
+ key: z.ZodOptional<z.ZodAny>;
8200
+ }>, {
8201
+ layout: z.ZodOptional<z.ZodType<_tscircuit_layout.LayoutBuilder, z.ZodTypeDef, _tscircuit_layout.LayoutBuilder>>;
8202
+ manualEdits: z.ZodOptional<z.ZodObject<{
8203
+ pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
8204
+ selector: z.ZodString;
8205
+ relative_to: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8206
+ center: z.ZodObject<{
8207
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8208
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8209
+ }, "strip", z.ZodTypeAny, {
8210
+ x: number;
8211
+ y: number;
8212
+ }, {
8213
+ x: string | number;
8214
+ y: string | number;
8215
+ }>;
8216
+ }, "strip", z.ZodTypeAny, {
8217
+ selector: string;
8218
+ relative_to: string;
8219
+ center: {
8220
+ x: number;
8221
+ y: number;
8222
+ };
8223
+ }, {
8224
+ selector: string;
8225
+ center: {
8226
+ x: string | number;
8227
+ y: string | number;
8228
+ };
8229
+ relative_to?: string | undefined;
8230
+ }>, "many">>;
8231
+ manual_trace_hints: z.ZodOptional<z.ZodArray<z.ZodObject<{
8232
+ pcb_port_selector: z.ZodString;
8233
+ offsets: z.ZodArray<z.ZodObject<{
8234
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8235
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8236
+ via: z.ZodOptional<z.ZodBoolean>;
8237
+ to_layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
8238
+ name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
8239
+ }, "strip", z.ZodTypeAny, {
8240
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8241
+ }, {
8242
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8243
+ }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8244
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8245
+ }>>;
8246
+ trace_width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8247
+ }, "strip", z.ZodTypeAny, {
8248
+ x: number;
8249
+ y: number;
8250
+ trace_width?: number | undefined;
8251
+ via?: boolean | undefined;
8252
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8253
+ }, {
8254
+ x: string | number;
8255
+ y: string | number;
8256
+ trace_width?: string | number | undefined;
8257
+ via?: boolean | undefined;
8258
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8259
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8260
+ } | undefined;
8261
+ }>, "many">;
8262
+ }, "strip", z.ZodTypeAny, {
8263
+ pcb_port_selector: string;
8264
+ offsets: {
8265
+ x: number;
8266
+ y: number;
8267
+ trace_width?: number | undefined;
8268
+ via?: boolean | undefined;
8269
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8270
+ }[];
8271
+ }, {
8272
+ pcb_port_selector: string;
8273
+ offsets: {
8274
+ x: string | number;
8275
+ y: string | number;
8276
+ trace_width?: string | number | undefined;
8277
+ via?: boolean | undefined;
8278
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8279
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8280
+ } | undefined;
8281
+ }[];
8282
+ }>, "many">>;
8283
+ schematic_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
8284
+ selector: z.ZodString;
8285
+ relative_to: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8286
+ center: z.ZodObject<{
8287
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8288
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8289
+ }, "strip", z.ZodTypeAny, {
8290
+ x: number;
8291
+ y: number;
8292
+ }, {
8293
+ x: string | number;
8294
+ y: string | number;
8295
+ }>;
8296
+ }, "strip", z.ZodTypeAny, {
8297
+ selector: string;
8298
+ relative_to: string;
8299
+ center: {
8300
+ x: number;
8301
+ y: number;
8302
+ };
8303
+ }, {
8304
+ selector: string;
8305
+ center: {
8306
+ x: string | number;
8307
+ y: string | number;
8308
+ };
8309
+ relative_to?: string | undefined;
8310
+ }>, "many">>;
8311
+ }, "strip", z.ZodTypeAny, {
8312
+ pcb_placements?: {
8313
+ selector: string;
8314
+ relative_to: string;
8315
+ center: {
8316
+ x: number;
8317
+ y: number;
8318
+ };
8319
+ }[] | undefined;
8320
+ manual_trace_hints?: {
8321
+ pcb_port_selector: string;
8322
+ offsets: {
8323
+ x: number;
8324
+ y: number;
8325
+ trace_width?: number | undefined;
8326
+ via?: boolean | undefined;
8327
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8328
+ }[];
8329
+ }[] | undefined;
8330
+ schematic_placements?: {
8331
+ selector: string;
8332
+ relative_to: string;
8333
+ center: {
8334
+ x: number;
8335
+ y: number;
8336
+ };
8337
+ }[] | undefined;
8338
+ }, {
8339
+ pcb_placements?: {
8340
+ selector: string;
8341
+ center: {
8342
+ x: string | number;
8343
+ y: string | number;
8344
+ };
8345
+ relative_to?: string | undefined;
8346
+ }[] | undefined;
8347
+ manual_trace_hints?: {
8348
+ pcb_port_selector: string;
8349
+ offsets: {
8350
+ x: string | number;
8351
+ y: string | number;
8352
+ trace_width?: string | number | undefined;
8353
+ via?: boolean | undefined;
8354
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8355
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8356
+ } | undefined;
8357
+ }[];
8358
+ }[] | undefined;
8359
+ schematic_placements?: {
8360
+ selector: string;
8361
+ center: {
8362
+ x: string | number;
8363
+ y: string | number;
8364
+ };
8365
+ relative_to?: string | undefined;
8366
+ }[] | undefined;
8367
+ }>>;
8368
+ schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
8369
+ schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
8370
+ routingDisabled: z.ZodOptional<z.ZodBoolean>;
8371
+ defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8372
+ minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8373
+ partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
8374
+ pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
8375
+ autorouter: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
8376
+ serverUrl: z.ZodOptional<z.ZodString>;
8377
+ inputFormat: z.ZodOptional<z.ZodEnum<["simplified", "circuit-json"]>>;
8378
+ serverMode: z.ZodOptional<z.ZodEnum<["job", "solve-endpoint"]>>;
8379
+ serverCacheEnabled: z.ZodOptional<z.ZodBoolean>;
8380
+ cache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
8381
+ groupMode: z.ZodOptional<z.ZodEnum<["sequential-trace", "subcircuit"]>>;
8382
+ local: z.ZodOptional<z.ZodBoolean>;
8383
+ }, "strip", z.ZodTypeAny, {
8384
+ serverUrl?: string | undefined;
8385
+ inputFormat?: "simplified" | "circuit-json" | undefined;
8386
+ serverMode?: "job" | "solve-endpoint" | undefined;
8387
+ serverCacheEnabled?: boolean | undefined;
8388
+ cache?: PcbRouteCache | undefined;
8389
+ groupMode?: "sequential-trace" | "subcircuit" | undefined;
8390
+ local?: boolean | undefined;
8391
+ }, {
8392
+ serverUrl?: string | undefined;
8393
+ inputFormat?: "simplified" | "circuit-json" | undefined;
8394
+ serverMode?: "job" | "solve-endpoint" | undefined;
8395
+ serverCacheEnabled?: boolean | undefined;
8396
+ cache?: PcbRouteCache | undefined;
8397
+ groupMode?: "sequential-trace" | "subcircuit" | undefined;
8398
+ local?: boolean | undefined;
8399
+ }>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
8400
+ }>, {
8401
+ width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8402
+ height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8403
+ outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
8404
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8405
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8406
+ }, "strip", z.ZodTypeAny, {
8407
+ x: number;
8408
+ y: number;
8409
+ }, {
8410
+ x: string | number;
8411
+ y: string | number;
8412
+ }>, "many">>;
8413
+ outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8414
+ outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8415
+ }>, {
8416
+ leftPinCount: z.ZodOptional<z.ZodNumber>;
8417
+ rightPinCount: z.ZodOptional<z.ZodNumber>;
8418
+ topPinCount: z.ZodOptional<z.ZodNumber>;
8419
+ bottomPinCount: z.ZodOptional<z.ZodNumber>;
8420
+ leftPins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8421
+ rightPins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8422
+ topPins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8423
+ bottomPins: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8424
+ pinPitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8425
+ innerHoles: z.ZodOptional<z.ZodBoolean>;
8426
+ }>, "strip", z.ZodTypeAny, {
8427
+ pcbX?: number | undefined;
8428
+ pcbY?: number | undefined;
8429
+ pcbRotation?: number | undefined;
8430
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8431
+ schX?: number | undefined;
8432
+ schY?: number | undefined;
8433
+ schRotation?: number | undefined;
8434
+ footprint?: Footprint | undefined;
8435
+ key?: any;
8436
+ name?: string | undefined;
8437
+ children?: any;
8438
+ leftPinCount?: number | undefined;
8439
+ rightPinCount?: number | undefined;
8440
+ topPinCount?: number | undefined;
8441
+ bottomPinCount?: number | undefined;
8442
+ layout?: _tscircuit_layout.LayoutBuilder | undefined;
8443
+ manualEdits?: {
8444
+ pcb_placements?: {
8445
+ selector: string;
8446
+ relative_to: string;
8447
+ center: {
8448
+ x: number;
8449
+ y: number;
8450
+ };
8451
+ }[] | undefined;
8452
+ manual_trace_hints?: {
8453
+ pcb_port_selector: string;
8454
+ offsets: {
8455
+ x: number;
8456
+ y: number;
8457
+ trace_width?: number | undefined;
8458
+ via?: boolean | undefined;
8459
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
8460
+ }[];
8461
+ }[] | undefined;
8462
+ schematic_placements?: {
8463
+ selector: string;
8464
+ relative_to: string;
8465
+ center: {
8466
+ x: number;
8467
+ y: number;
8468
+ };
8469
+ }[] | undefined;
8470
+ } | undefined;
8471
+ routingDisabled?: boolean | undefined;
8472
+ defaultTraceWidth?: number | undefined;
8473
+ minTraceWidth?: number | undefined;
8474
+ pcbRouteCache?: PcbRouteCache | undefined;
8475
+ autorouter?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | {
8476
+ serverUrl?: string | undefined;
8477
+ inputFormat?: "simplified" | "circuit-json" | undefined;
8478
+ serverMode?: "job" | "solve-endpoint" | undefined;
8479
+ serverCacheEnabled?: boolean | undefined;
8480
+ cache?: PcbRouteCache | undefined;
8481
+ groupMode?: "sequential-trace" | "subcircuit" | undefined;
8482
+ local?: boolean | undefined;
8483
+ } | undefined;
8484
+ schAutoLayoutEnabled?: boolean | undefined;
8485
+ schTraceAutoLabelEnabled?: boolean | undefined;
8486
+ partsEngine?: PartsEngine | undefined;
8487
+ width?: number | undefined;
8488
+ height?: number | undefined;
8489
+ outline?: {
8490
+ x: number;
8491
+ y: number;
8492
+ }[] | undefined;
8493
+ outlineOffsetX?: number | undefined;
8494
+ outlineOffsetY?: number | undefined;
8495
+ leftPins?: string[] | undefined;
8496
+ rightPins?: string[] | undefined;
8497
+ topPins?: string[] | undefined;
8498
+ bottomPins?: string[] | undefined;
8499
+ pinPitch?: number | undefined;
8500
+ innerHoles?: boolean | undefined;
8501
+ }, {
8502
+ pcbX?: string | number | undefined;
8503
+ pcbY?: string | number | undefined;
8504
+ pcbRotation?: string | number | undefined;
8505
+ layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8506
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8507
+ } | undefined;
8508
+ schX?: string | number | undefined;
8509
+ schY?: string | number | undefined;
8510
+ schRotation?: string | number | undefined;
8511
+ footprint?: Footprint | undefined;
8512
+ key?: any;
8513
+ name?: string | undefined;
8514
+ children?: any;
8515
+ leftPinCount?: number | undefined;
8516
+ rightPinCount?: number | undefined;
8517
+ topPinCount?: number | undefined;
8518
+ bottomPinCount?: number | undefined;
8519
+ layout?: _tscircuit_layout.LayoutBuilder | undefined;
8520
+ manualEdits?: {
8521
+ pcb_placements?: {
8522
+ selector: string;
8523
+ center: {
8524
+ x: string | number;
8525
+ y: string | number;
8526
+ };
8527
+ relative_to?: string | undefined;
8528
+ }[] | undefined;
8529
+ manual_trace_hints?: {
8530
+ pcb_port_selector: string;
8531
+ offsets: {
8532
+ x: string | number;
8533
+ y: string | number;
8534
+ trace_width?: string | number | undefined;
8535
+ via?: boolean | undefined;
8536
+ to_layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8537
+ name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8538
+ } | undefined;
8539
+ }[];
8540
+ }[] | undefined;
8541
+ schematic_placements?: {
8542
+ selector: string;
8543
+ center: {
8544
+ x: string | number;
8545
+ y: string | number;
8546
+ };
8547
+ relative_to?: string | undefined;
8548
+ }[] | undefined;
8549
+ } | undefined;
8550
+ routingDisabled?: boolean | undefined;
8551
+ defaultTraceWidth?: string | number | undefined;
8552
+ minTraceWidth?: string | number | undefined;
8553
+ pcbRouteCache?: PcbRouteCache | undefined;
8554
+ autorouter?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | {
8555
+ serverUrl?: string | undefined;
8556
+ inputFormat?: "simplified" | "circuit-json" | undefined;
8557
+ serverMode?: "job" | "solve-endpoint" | undefined;
8558
+ serverCacheEnabled?: boolean | undefined;
8559
+ cache?: PcbRouteCache | undefined;
8560
+ groupMode?: "sequential-trace" | "subcircuit" | undefined;
8561
+ local?: boolean | undefined;
8562
+ } | undefined;
8563
+ schAutoLayoutEnabled?: boolean | undefined;
8564
+ schTraceAutoLabelEnabled?: boolean | undefined;
8565
+ partsEngine?: PartsEngine | undefined;
8566
+ width?: string | number | undefined;
8567
+ height?: string | number | undefined;
8568
+ outline?: {
8569
+ x: string | number;
8570
+ y: string | number;
8571
+ }[] | undefined;
8572
+ outlineOffsetX?: string | number | undefined;
8573
+ outlineOffsetY?: string | number | undefined;
8574
+ leftPins?: string[] | undefined;
8575
+ rightPins?: string[] | undefined;
8576
+ topPins?: string[] | undefined;
8577
+ bottomPins?: string[] | undefined;
8578
+ pinPitch?: string | number | undefined;
8579
+ innerHoles?: boolean | undefined;
8580
+ }>;
8581
+
8167
8582
  interface CapacitorProps extends CommonComponentProps {
8168
8583
  capacitance: number | string;
8169
8584
  maxVoltageRating?: number | string;
@@ -15070,4 +15485,4 @@ declare const platformConfig: z.ZodObject<{
15070
15485
  cloudAutorouterUrl?: string | undefined;
15071
15486
  }>;
15072
15487
 
15073
- export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorProps, type ChipProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PinHeaderProps, type PinLabels, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };
15488
+ export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BatteryProps, type BoardProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorProps, type ChipProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConstrainedLayoutProps, type ConstraintProps, type CrystalProps, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type Footprint, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type GroupProps, type HoleProps, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type JumperProps, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetProps, type NetAliasProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PinHeaderProps, type PinLabels, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicLineProps, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicTextProps, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TraceHintProps, type TraceProps, type TransistorProps, type ViaProps, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPins, capacitorProps, chipProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_schematic_component_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectSmtPadProps, rectSolderPasteProps, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicLineProps, schematicPathProps, schematicPinArrangement, schematicPinStyle, schematicPortArrangement, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, traceHintProps, traceProps, transistorPins, transistorProps, viaProps };