@protontech/autofill 0.0.35059265 → 0.0.35481761

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.
Files changed (44) hide show
  1. package/features/feature.d.ts +13 -2
  2. package/features/feature.js +37 -15
  3. package/features/feature.spec.js +56 -7
  4. package/features/v1/abstract.field.d.ts +8377 -406
  5. package/features/v1/abstract.field.js +24 -24
  6. package/features/v1/abstract.form.d.ts +3428 -14
  7. package/features/v1/abstract.form.js +197 -197
  8. package/features/v1/field.email.d.ts +3421 -0
  9. package/features/v1/field.email.js +7 -7
  10. package/features/v1/field.otp.d.ts +71178 -0
  11. package/features/v1/field.otp.js +42 -42
  12. package/features/v1/field.password.d.ts +99166 -0
  13. package/features/v1/field.password.js +42 -42
  14. package/features/v1/field.username-hidden.d.ts +908 -0
  15. package/features/v1/field.username-hidden.js +7 -7
  16. package/features/v1/field.username.d.ts +42382 -0
  17. package/features/v1/field.username.js +11 -11
  18. package/features/v1/fields.sorted.gen.d.ts +1441 -0
  19. package/features/v1/fields.sorted.gen.js +344 -0
  20. package/features/v1/forms.sorted.gen.d.ts +734 -0
  21. package/features/v1/forms.sorted.gen.js +334 -0
  22. package/features/v1/index.d.ts +5305 -12
  23. package/features/v1/index.js +7 -11
  24. package/features/v1/index.spec.js +34 -20
  25. package/models/perceptron/params/login-model.json +91 -91
  26. package/models/perceptron/params/new-password-model.json +21 -21
  27. package/models/perceptron/params/otp-model.json +29 -29
  28. package/models/perceptron/params/password-change-model.json +72 -72
  29. package/models/perceptron/params/password-model.json +23 -23
  30. package/models/perceptron/params/recovery-model.json +81 -81
  31. package/models/perceptron/params/register-model.json +99 -99
  32. package/models/perceptron/params/username-hidden-model.json +10 -10
  33. package/models/perceptron/params/username-model.json +7 -7
  34. package/models/random_forest/params/otp-model.json +306 -366
  35. package/package.json +3 -3
  36. package/rules/v1/index.js +2 -2
  37. package/scripts/gen-sorted-features.js +125 -29
  38. package/types/index.d.ts +2 -1
  39. package/utils/fathom.d.ts +1 -2
  40. package/utils/fathom.js +2 -2
  41. package/features/registry.d.ts +0 -3
  42. package/features/registry.js +0 -9
  43. package/features/sorted.gen.d.ts +0 -14
  44. package/features/sorted.gen.js +0 -22
@@ -1,614 +1,4028 @@
1
1
  import type { ComputedFeatures } from "@protontech/autofill/types";
2
+ import type { HTMLFieldElement } from "@protontech/autofill/utils/field";
3
+ export declare const form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
4
+ export declare const parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
5
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
6
+ }>;
7
+ export declare const doc: import("@protontech/autofill/types").Feature<"doc", Document, {
8
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
9
+ }>;
10
+ export declare const inputIterator: import("@protontech/autofill/types").Feature<"inputIterator", import("@protontech/autofill/utils/form").FormInputIterator, {}>;
11
+ export declare const fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
12
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
13
+ }>;
14
+ export declare const visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
15
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
16
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
17
+ }>;
18
+ }>;
19
+ export declare const inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
20
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
21
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
22
+ }>;
23
+ }>;
24
+ export declare const hidden: import("@protontech/autofill/types").Feature<"hidden", HTMLInputElement[], {
25
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
26
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
27
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
28
+ }>;
29
+ }>;
30
+ }>;
31
+ export declare const visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
32
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
33
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
34
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
35
+ }>;
36
+ }>;
37
+ }>;
38
+ export declare const fieldsets: import("@protontech/autofill/types").Feature<"fieldsets", HTMLFieldSetElement[], {
39
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
40
+ }>;
41
+ export declare const textareas: import("@protontech/autofill/types").Feature<"textareas", HTMLTextAreaElement[], {
42
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
43
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
44
+ }>;
45
+ }>;
46
+ export declare const selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
47
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
48
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
49
+ }>;
50
+ }>;
51
+ export declare const texts: import("@protontech/autofill/types").Feature<"texts", HTMLInputElement[], {
52
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
53
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
54
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
55
+ }>;
56
+ }>;
57
+ }>;
58
+ export declare const tels: import("@protontech/autofill/types").Feature<"tels", HTMLInputElement[], {
59
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
60
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
61
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
62
+ }>;
63
+ }>;
64
+ }>;
65
+ export declare const readOnly: import("@protontech/autofill/types").Feature<"readOnly", HTMLInputElement[], {
66
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
67
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
68
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
69
+ }>;
70
+ }>;
71
+ }>;
72
+ export declare const radios: import("@protontech/autofill/types").Feature<"radios", HTMLInputElement[], {
73
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
74
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
75
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
76
+ }>;
77
+ }>;
78
+ }>;
79
+ export declare const checkboxes: import("@protontech/autofill/types").Feature<"checkboxes", HTMLInputElement[], {
80
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
81
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
82
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
83
+ }>;
84
+ }>;
85
+ }>;
86
+ export declare const numbers: import("@protontech/autofill/types").Feature<"numbers", HTMLInputElement[], {
87
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
88
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
89
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
90
+ }>;
91
+ }>;
92
+ }>;
93
+ export declare const dates: import("@protontech/autofill/types").Feature<"dates", HTMLInputElement[], {
94
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
95
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
96
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
97
+ }>;
98
+ }>;
99
+ }>;
100
+ export declare const files: import("@protontech/autofill/types").Feature<"files", HTMLInputElement[], {
101
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
102
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
103
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
104
+ }>;
105
+ }>;
106
+ }>;
107
+ export declare const ccInputs: import("@protontech/autofill/types").Feature<"ccInputs", HTMLInputElement[], {
108
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
109
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
110
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
111
+ }>;
112
+ }>;
113
+ }>;
114
+ export declare const ccSelects: import("@protontech/autofill/types").Feature<"ccSelects", HTMLSelectElement[], {
115
+ selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
116
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
117
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
118
+ }>;
119
+ }>;
120
+ }>;
121
+ export declare const ccs: import("@protontech/autofill/types").Feature<"ccs", HTMLElement[], {
122
+ ccInputs: import("@protontech/autofill/types").Feature<"ccInputs", HTMLInputElement[], {
123
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
124
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
125
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
126
+ }>;
127
+ }>;
128
+ }>;
129
+ ccSelects: import("@protontech/autofill/types").Feature<"ccSelects", HTMLSelectElement[], {
130
+ selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
131
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
132
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
133
+ }>;
134
+ }>;
135
+ }>;
136
+ }>;
137
+ export declare const identities: import("@protontech/autofill/types").Feature<"identities", HTMLInputElement[], {
138
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
139
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
140
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
141
+ }>;
142
+ }>;
143
+ ccs: import("@protontech/autofill/types").Feature<"ccs", HTMLElement[], {
144
+ ccInputs: import("@protontech/autofill/types").Feature<"ccInputs", HTMLInputElement[], {
145
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
146
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
147
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
148
+ }>;
149
+ }>;
150
+ }>;
151
+ ccSelects: import("@protontech/autofill/types").Feature<"ccSelects", HTMLSelectElement[], {
152
+ selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
153
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
154
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
155
+ }>;
156
+ }>;
157
+ }>;
158
+ }>;
159
+ }>;
160
+ export declare const required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
161
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
162
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
163
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
164
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
165
+ }>;
166
+ }>;
167
+ }>;
168
+ }>;
169
+ export declare const disabled: import("@protontech/autofill/types").Feature<"disabled", HTMLInputElement[], {
170
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
171
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
172
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
173
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
174
+ }>;
175
+ }>;
176
+ }>;
177
+ }>;
178
+ export declare const autofocused: import("@protontech/autofill/types").Feature<"autofocused", HTMLInputElement | undefined, {
179
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
180
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
181
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
182
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
183
+ }>;
184
+ }>;
185
+ }>;
186
+ }>;
187
+ export declare const usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
188
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
189
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
190
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
191
+ }>;
192
+ }>;
193
+ }>;
194
+ export declare const emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
195
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
196
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
197
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
198
+ }>;
199
+ }>;
200
+ }>;
201
+ export declare const identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
202
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
203
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
204
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
205
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
206
+ }>;
207
+ }>;
208
+ }>;
209
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
210
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
211
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
212
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
213
+ }>;
214
+ }>;
215
+ }>;
216
+ }>;
217
+ export declare const identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
218
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
219
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
220
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
221
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
222
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
223
+ }>;
224
+ }>;
225
+ }>;
226
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
227
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
228
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
229
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
230
+ }>;
231
+ }>;
232
+ }>;
233
+ }>;
234
+ }>;
235
+ export declare const visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
236
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
237
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
238
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
239
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
240
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
241
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
242
+ }>;
243
+ }>;
244
+ }>;
245
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
246
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
247
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
248
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
249
+ }>;
250
+ }>;
251
+ }>;
252
+ }>;
253
+ }>;
254
+ }>;
255
+ export declare const hiddenIdentifiers: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
256
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
257
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
258
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
259
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
260
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
261
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
262
+ }>;
263
+ }>;
264
+ }>;
265
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
266
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
267
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
268
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
269
+ }>;
270
+ }>;
271
+ }>;
272
+ }>;
273
+ }>;
274
+ }>;
275
+ export declare const passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
276
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
277
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
278
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
279
+ }>;
280
+ }>;
281
+ }>;
282
+ export declare const passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
283
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
284
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
285
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
286
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
287
+ }>;
288
+ }>;
289
+ }>;
290
+ }>;
291
+ export declare const visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
292
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
293
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
294
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
295
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
296
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
297
+ }>;
298
+ }>;
299
+ }>;
300
+ }>;
301
+ }>;
302
+ export declare const hiddenPasswords: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
303
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
304
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
305
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
306
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
307
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
308
+ }>;
309
+ }>;
310
+ }>;
311
+ }>;
312
+ }>;
313
+ export declare const mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
314
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
315
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
316
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
317
+ }>;
318
+ }>;
319
+ }>;
320
+ export declare const captchas: import("@protontech/autofill/types").Feature<"captchas", HTMLElement[], {
321
+ parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
322
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
323
+ }>;
324
+ }>;
325
+ export declare const socials: import("@protontech/autofill/types").Feature<"socials", HTMLElement[], {
326
+ parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
327
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
328
+ }>;
329
+ }>;
330
+ export declare const submits: import("@protontech/autofill/types").Feature<"submits", HTMLFieldElement[], {
331
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
332
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
333
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
334
+ }>;
335
+ }>;
336
+ }>;
337
+ export declare const btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
338
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
339
+ }>;
340
+ export declare const btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
341
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
342
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
343
+ }>;
344
+ }>;
345
+ export declare const candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
346
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
347
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
348
+ }>;
349
+ }>;
350
+ export declare const submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
351
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
352
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
353
+ }>;
354
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
355
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
356
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
357
+ }>;
358
+ }>;
359
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
360
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
361
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
362
+ }>;
363
+ }>;
364
+ }>;
365
+ export declare const anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
366
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
367
+ }>;
368
+ export declare const oauths: import("@protontech/autofill/types").Feature<"oauths", HTMLElement[], {
369
+ socials: import("@protontech/autofill/types").Feature<"socials", HTMLElement[], {
370
+ parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
371
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
372
+ }>;
373
+ }>;
374
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
375
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
376
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
377
+ }>;
378
+ }>;
379
+ }>;
380
+ export declare const layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
381
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
382
+ }>;
383
+ export declare const autofocusedIsIdentifier: import("@protontech/autofill/types").Feature<"autofocusedIsIdentifier", boolean, {
384
+ autofocused: import("@protontech/autofill/types").Feature<"autofocused", HTMLInputElement | undefined, {
385
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
386
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
387
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
388
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
389
+ }>;
390
+ }>;
391
+ }>;
392
+ }>;
393
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
394
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
395
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
396
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
397
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
398
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
399
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
400
+ }>;
401
+ }>;
402
+ }>;
403
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
404
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
405
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
406
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
407
+ }>;
408
+ }>;
409
+ }>;
410
+ }>;
411
+ }>;
412
+ }>;
413
+ }>;
414
+ export declare const autofocusedIsPassword: import("@protontech/autofill/types").Feature<"autofocusedIsPassword", boolean, {
415
+ autofocused: import("@protontech/autofill/types").Feature<"autofocused", HTMLInputElement | undefined, {
416
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
417
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
418
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
419
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
420
+ }>;
421
+ }>;
422
+ }>;
423
+ }>;
424
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
425
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
426
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
427
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
428
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
429
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
430
+ }>;
431
+ }>;
432
+ }>;
433
+ }>;
434
+ }>;
435
+ }>;
436
+ export declare const pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
437
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
438
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
439
+ }>;
440
+ }>;
441
+ export declare const nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
442
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
443
+ }>;
444
+ export declare const formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
445
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
446
+ }>;
447
+ export declare const formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
448
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
449
+ }>;
450
+ export declare const pwHaystack: import("@protontech/autofill/types").Feature<"pwHaystack", string[], {
451
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
452
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
453
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
454
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
455
+ }>;
456
+ }>;
457
+ }>;
458
+ }>;
459
+ export declare const identifierHaystack: import("@protontech/autofill/types").Feature<"identifierHaystack", string[], {
460
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
461
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
462
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
463
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
464
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
465
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
466
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
467
+ }>;
468
+ }>;
469
+ }>;
470
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
471
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
472
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
473
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
474
+ }>;
475
+ }>;
476
+ }>;
477
+ }>;
478
+ }>;
479
+ }>;
480
+ }>;
481
+ export declare const btnHaystack: import("@protontech/autofill/types").Feature<"btnHaystack", string[], {
482
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
483
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
484
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
485
+ }>;
486
+ }>;
487
+ }>;
488
+ export declare const submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
489
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
490
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
491
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
492
+ }>;
493
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
494
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
495
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
496
+ }>;
497
+ }>;
498
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
499
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
500
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
501
+ }>;
502
+ }>;
503
+ }>;
504
+ }>;
505
+ export declare const checkboxesHaystack: import("@protontech/autofill/types").Feature<"checkboxesHaystack", string[], {
506
+ checkboxes: import("@protontech/autofill/types").Feature<"checkboxes", HTMLInputElement[], {
507
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
508
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
509
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
510
+ }>;
511
+ }>;
512
+ }>;
513
+ }>;
514
+ export declare const anchorsHaystack: import("@protontech/autofill/types").Feature<"anchorsHaystack", string[], {
515
+ anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
516
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
517
+ }>;
518
+ }>;
519
+ export declare const mfaInputsHaystack: import("@protontech/autofill/types").Feature<"mfaInputsHaystack", string[], {
520
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
521
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
522
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
523
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
524
+ }>;
525
+ }>;
526
+ }>;
527
+ }>;
528
+ export declare const layoutHaystack: import("@protontech/autofill/types").Feature<"layoutHaystack", string[], {
529
+ layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
530
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
531
+ }>;
532
+ }>;
533
+ export declare const formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
534
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
535
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
536
+ }>;
537
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
538
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
539
+ }>;
540
+ }>;
541
+ export declare const pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
542
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
543
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
544
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
545
+ }>;
546
+ }>;
547
+ }>;
548
+ export declare const formTextLogin: import("@protontech/autofill/types").Feature<"formTextLogin", boolean, {
549
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
550
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
551
+ }>;
552
+ }>;
553
+ export declare const formAttrsLogin: import("@protontech/autofill/types").Feature<"formAttrsLogin", boolean, {
554
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
555
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
556
+ }>;
557
+ }>;
558
+ export declare const headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
559
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
560
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
561
+ }>;
562
+ }>;
563
+ export declare const layoutLogin: import("@protontech/autofill/types").Feature<"layoutLogin", boolean, {
564
+ layoutHaystack: import("@protontech/autofill/types").Feature<"layoutHaystack", string[], {
565
+ layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
566
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
567
+ }>;
568
+ }>;
569
+ }>;
570
+ export declare const rememberMeCheckbox: import("@protontech/autofill/types").Feature<"rememberMeCheckbox", boolean, {
571
+ checkboxesHaystack: import("@protontech/autofill/types").Feature<"checkboxesHaystack", string[], {
572
+ checkboxes: import("@protontech/autofill/types").Feature<"checkboxes", HTMLInputElement[], {
573
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
574
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
575
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
576
+ }>;
577
+ }>;
578
+ }>;
579
+ }>;
580
+ }>;
581
+ export declare const submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
582
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
583
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
584
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
585
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
586
+ }>;
587
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
588
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
589
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
590
+ }>;
591
+ }>;
592
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
593
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
594
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
595
+ }>;
596
+ }>;
597
+ }>;
598
+ }>;
599
+ }>;
600
+ export declare const troubleLink: import("@protontech/autofill/types").Feature<"troubleLink", boolean, {
601
+ anchorsHaystack: import("@protontech/autofill/types").Feature<"anchorsHaystack", string[], {
602
+ anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
603
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
604
+ }>;
605
+ }>;
606
+ }>;
607
+ export declare const pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
608
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
609
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
610
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
611
+ }>;
612
+ }>;
613
+ }>;
614
+ export declare const formTextRegister: import("@protontech/autofill/types").Feature<"formTextRegister", boolean, {
615
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
616
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
617
+ }>;
618
+ }>;
619
+ export declare const formAttrsRegister: import("@protontech/autofill/types").Feature<"formAttrsRegister", boolean, {
620
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
621
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
622
+ }>;
623
+ }>;
624
+ export declare const headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
625
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
626
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
627
+ }>;
628
+ }>;
629
+ export declare const layoutRegister: import("@protontech/autofill/types").Feature<"layoutRegister", boolean, {
630
+ layoutHaystack: import("@protontech/autofill/types").Feature<"layoutHaystack", string[], {
631
+ layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
632
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
633
+ }>;
634
+ }>;
635
+ }>;
636
+ export declare const TOSRef: import("@protontech/autofill/types").Feature<"TOSRef", boolean, {
637
+ checkboxesHaystack: import("@protontech/autofill/types").Feature<"checkboxesHaystack", string[], {
638
+ checkboxes: import("@protontech/autofill/types").Feature<"checkboxes", HTMLInputElement[], {
639
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
640
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
641
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
642
+ }>;
643
+ }>;
644
+ }>;
645
+ }>;
646
+ anchorsHaystack: import("@protontech/autofill/types").Feature<"anchorsHaystack", string[], {
647
+ anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
648
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
649
+ }>;
650
+ }>;
651
+ }>;
652
+ export declare const submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
653
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
654
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
655
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
656
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
657
+ }>;
658
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
659
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
660
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
661
+ }>;
662
+ }>;
663
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
664
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
665
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
666
+ }>;
667
+ }>;
668
+ }>;
669
+ }>;
670
+ }>;
671
+ export declare const pwNewRegister: import("@protontech/autofill/types").Feature<"pwNewRegister", boolean, {
672
+ pwHaystack: import("@protontech/autofill/types").Feature<"pwHaystack", string[], {
673
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
674
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
675
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
676
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
677
+ }>;
678
+ }>;
679
+ }>;
680
+ }>;
681
+ }>;
682
+ export declare const pwConfirmRegister: import("@protontech/autofill/types").Feature<"pwConfirmRegister", boolean, {
683
+ pwHaystack: import("@protontech/autofill/types").Feature<"pwHaystack", string[], {
684
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
685
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
686
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
687
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
688
+ }>;
689
+ }>;
690
+ }>;
691
+ }>;
692
+ }>;
693
+ export declare const buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
694
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
695
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
696
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
697
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
698
+ }>;
699
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
700
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
701
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
702
+ }>;
703
+ }>;
704
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
705
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
706
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
707
+ }>;
708
+ }>;
709
+ }>;
710
+ }>;
711
+ }>;
712
+ export declare const headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
713
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
714
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
715
+ }>;
716
+ }>;
717
+ export declare const multistepForm: import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
718
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
719
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
720
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
721
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
722
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
723
+ }>;
724
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
725
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
726
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
727
+ }>;
728
+ }>;
729
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
730
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
731
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
732
+ }>;
733
+ }>;
734
+ }>;
735
+ }>;
736
+ }>;
737
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
738
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
739
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
740
+ }>;
741
+ }>;
742
+ }>;
743
+ export declare const pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
744
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
745
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
746
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
747
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
748
+ }>;
749
+ }>;
750
+ }>;
751
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
752
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
753
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
754
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
755
+ }>;
756
+ }>;
757
+ }>;
758
+ }>;
759
+ export declare const submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
760
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
761
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
762
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
763
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
764
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
765
+ }>;
766
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
767
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
768
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
769
+ }>;
770
+ }>;
771
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
772
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
773
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
774
+ }>;
775
+ }>;
776
+ }>;
777
+ }>;
778
+ }>;
779
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
780
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
781
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
782
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
783
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
784
+ }>;
785
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
786
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
787
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
788
+ }>;
789
+ }>;
790
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
791
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
792
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
793
+ }>;
794
+ }>;
795
+ }>;
796
+ }>;
797
+ }>;
798
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
799
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
800
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
801
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
802
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
803
+ }>;
804
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
805
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
806
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
807
+ }>;
808
+ }>;
809
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
810
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
811
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
812
+ }>;
813
+ }>;
814
+ }>;
815
+ }>;
816
+ }>;
817
+ }>;
818
+ export declare const headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
819
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
820
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
821
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
822
+ }>;
823
+ }>;
824
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
825
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
826
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
827
+ }>;
828
+ }>;
829
+ }>;
830
+ export declare const multiAuthForm: import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
831
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
832
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
833
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
834
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
835
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
836
+ }>;
837
+ }>;
838
+ }>;
839
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
840
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
841
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
842
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
843
+ }>;
844
+ }>;
845
+ }>;
846
+ }>;
847
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
848
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
849
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
850
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
851
+ }>;
852
+ }>;
853
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
854
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
855
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
856
+ }>;
857
+ }>;
858
+ }>;
859
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
860
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
861
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
862
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
863
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
864
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
865
+ }>;
866
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
867
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
868
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
869
+ }>;
870
+ }>;
871
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
872
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
873
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
874
+ }>;
875
+ }>;
876
+ }>;
877
+ }>;
878
+ }>;
879
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
880
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
881
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
882
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
883
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
884
+ }>;
885
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
886
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
887
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
888
+ }>;
889
+ }>;
890
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
891
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
892
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
893
+ }>;
894
+ }>;
895
+ }>;
896
+ }>;
897
+ }>;
898
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
899
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
900
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
901
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
902
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
903
+ }>;
904
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
905
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
906
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
907
+ }>;
908
+ }>;
909
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
910
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
911
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
912
+ }>;
913
+ }>;
914
+ }>;
915
+ }>;
916
+ }>;
917
+ }>;
918
+ }>;
919
+ export declare const pagePwReset: import("@protontech/autofill/types").Feature<"pagePwReset", boolean, {
920
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
921
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
922
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
923
+ }>;
924
+ }>;
925
+ }>;
926
+ export declare const formTextPwReset: import("@protontech/autofill/types").Feature<"formTextPwReset", boolean, {
927
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
928
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
929
+ }>;
930
+ }>;
931
+ export declare const formAttrsPwReset: import("@protontech/autofill/types").Feature<"formAttrsPwReset", boolean, {
932
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
933
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
934
+ }>;
935
+ }>;
936
+ export declare const headingsPwReset: import("@protontech/autofill/types").Feature<"headingsPwReset", boolean, {
937
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
938
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
939
+ }>;
940
+ }>;
941
+ export declare const layoutPwReset: import("@protontech/autofill/types").Feature<"layoutPwReset", boolean, {
942
+ layoutHaystack: import("@protontech/autofill/types").Feature<"layoutHaystack", string[], {
943
+ layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
944
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
945
+ }>;
946
+ }>;
947
+ }>;
948
+ export declare const pageRecovery: import("@protontech/autofill/types").Feature<"pageRecovery", boolean, {
949
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
950
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
951
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
952
+ }>;
953
+ }>;
954
+ }>;
955
+ export declare const formTextRecovery: import("@protontech/autofill/types").Feature<"formTextRecovery", boolean, {
956
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
957
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
958
+ }>;
959
+ }>;
960
+ export declare const formAttrsRecovery: import("@protontech/autofill/types").Feature<"formAttrsRecovery", boolean, {
961
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
962
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
963
+ }>;
964
+ }>;
965
+ export declare const headingsRecovery: import("@protontech/autofill/types").Feature<"headingsRecovery", boolean, {
966
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
967
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
968
+ }>;
969
+ }>;
970
+ export declare const layoutRecovery: import("@protontech/autofill/types").Feature<"layoutRecovery", boolean, {
971
+ layoutHaystack: import("@protontech/autofill/types").Feature<"layoutHaystack", string[], {
972
+ layouts: import("@protontech/autofill/types").Feature<"layouts", HTMLElement[], {
973
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
974
+ }>;
975
+ }>;
976
+ }>;
977
+ export declare const submitRecovery: import("@protontech/autofill/types").Feature<"submitRecovery", boolean, {
978
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
979
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
980
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
981
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
982
+ }>;
983
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
984
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
985
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
986
+ }>;
987
+ }>;
988
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
989
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
990
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
991
+ }>;
992
+ }>;
993
+ }>;
994
+ }>;
995
+ }>;
996
+ export declare const identifierRecovery: import("@protontech/autofill/types").Feature<"identifierRecovery", boolean, {
997
+ identifierHaystack: import("@protontech/autofill/types").Feature<"identifierHaystack", string[], {
998
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
999
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1000
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1001
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1002
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1003
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1004
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1005
+ }>;
1006
+ }>;
1007
+ }>;
1008
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1009
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1010
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1011
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1012
+ }>;
1013
+ }>;
1014
+ }>;
1015
+ }>;
1016
+ }>;
1017
+ }>;
1018
+ }>;
1019
+ }>;
1020
+ export declare const inputsMFA: import("@protontech/autofill/types").Feature<"inputsMFA", boolean, {
1021
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1022
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1023
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1024
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1025
+ }>;
1026
+ }>;
1027
+ }>;
1028
+ mfaInputsHaystack: import("@protontech/autofill/types").Feature<"mfaInputsHaystack", string[], {
1029
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1030
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1031
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1032
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1033
+ }>;
1034
+ }>;
1035
+ }>;
1036
+ }>;
1037
+ }>;
1038
+ export declare const formAttrsMFA: import("@protontech/autofill/types").Feature<"formAttrsMFA", boolean, {
1039
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1040
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1041
+ }>;
1042
+ }>;
1043
+ export declare const formTextMFA: import("@protontech/autofill/types").Feature<"formTextMFA", boolean, {
1044
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1045
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1046
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1047
+ }>;
1048
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1049
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1050
+ }>;
1051
+ }>;
1052
+ }>;
1053
+ export declare const maybeMFA: import("@protontech/autofill/types").Feature<"maybeMFA", boolean, {
1054
+ formTextMFA: import("@protontech/autofill/types").Feature<"formTextMFA", boolean, {
1055
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1056
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1057
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1058
+ }>;
1059
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1060
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1061
+ }>;
1062
+ }>;
1063
+ }>;
1064
+ formAttrsMFA: import("@protontech/autofill/types").Feature<"formAttrsMFA", boolean, {
1065
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1066
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1067
+ }>;
1068
+ }>;
1069
+ inputsMFA: import("@protontech/autofill/types").Feature<"inputsMFA", boolean, {
1070
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1071
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1072
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1073
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1074
+ }>;
1075
+ }>;
1076
+ }>;
1077
+ mfaInputsHaystack: import("@protontech/autofill/types").Feature<"mfaInputsHaystack", string[], {
1078
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1079
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1080
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1081
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1082
+ }>;
1083
+ }>;
1084
+ }>;
1085
+ }>;
1086
+ }>;
1087
+ }>;
1088
+ export declare const haystackMFA: import("@protontech/autofill/types").Feature<"haystackMFA", string[], {
1089
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1090
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1091
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1092
+ }>;
1093
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1094
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1095
+ }>;
1096
+ }>;
1097
+ maybeMFA: import("@protontech/autofill/types").Feature<"maybeMFA", boolean, {
1098
+ formTextMFA: import("@protontech/autofill/types").Feature<"formTextMFA", boolean, {
1099
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1100
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1101
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1102
+ }>;
1103
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1104
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1105
+ }>;
1106
+ }>;
1107
+ }>;
1108
+ formAttrsMFA: import("@protontech/autofill/types").Feature<"formAttrsMFA", boolean, {
1109
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1110
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1111
+ }>;
1112
+ }>;
1113
+ inputsMFA: import("@protontech/autofill/types").Feature<"inputsMFA", boolean, {
1114
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1115
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1116
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1117
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1118
+ }>;
1119
+ }>;
1120
+ }>;
1121
+ mfaInputsHaystack: import("@protontech/autofill/types").Feature<"mfaInputsHaystack", string[], {
1122
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1123
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1124
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1125
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1126
+ }>;
1127
+ }>;
1128
+ }>;
1129
+ }>;
1130
+ }>;
1131
+ }>;
1132
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1133
+ }>;
1134
+ export declare const formTextAuthenticator: import("@protontech/autofill/types").Feature<"formTextAuthenticator", boolean, {
1135
+ haystackMFA: import("@protontech/autofill/types").Feature<"haystackMFA", string[], {
1136
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1137
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1138
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1139
+ }>;
1140
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1141
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1142
+ }>;
1143
+ }>;
1144
+ maybeMFA: import("@protontech/autofill/types").Feature<"maybeMFA", boolean, {
1145
+ formTextMFA: import("@protontech/autofill/types").Feature<"formTextMFA", boolean, {
1146
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1147
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1148
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1149
+ }>;
1150
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1151
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1152
+ }>;
1153
+ }>;
1154
+ }>;
1155
+ formAttrsMFA: import("@protontech/autofill/types").Feature<"formAttrsMFA", boolean, {
1156
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1157
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1158
+ }>;
1159
+ }>;
1160
+ inputsMFA: import("@protontech/autofill/types").Feature<"inputsMFA", boolean, {
1161
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1162
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1163
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1164
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1165
+ }>;
1166
+ }>;
1167
+ }>;
1168
+ mfaInputsHaystack: import("@protontech/autofill/types").Feature<"mfaInputsHaystack", string[], {
1169
+ mfaInputs: import("@protontech/autofill/types").Feature<"mfaInputs", HTMLInputElement[], {
1170
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1171
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1172
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1173
+ }>;
1174
+ }>;
1175
+ }>;
1176
+ }>;
1177
+ }>;
1178
+ }>;
1179
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1180
+ }>;
1181
+ }>;
1182
+ export declare const headingsOTPOutlier: import("@protontech/autofill/types").Feature<"headingsOTPOutlier", boolean, {
1183
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1184
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1185
+ }>;
1186
+ }>;
1187
+ export declare const formOTPOutlier: import("@protontech/autofill/types").Feature<"formOTPOutlier", boolean, {
1188
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1189
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1190
+ }>;
1191
+ }>;
1192
+ export declare const linkOTPOutlier: import("@protontech/autofill/types").Feature<"linkOTPOutlier", boolean, {
1193
+ anchorsHaystack: import("@protontech/autofill/types").Feature<"anchorsHaystack", string[], {
1194
+ anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
1195
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1196
+ }>;
1197
+ }>;
1198
+ btnHaystack: import("@protontech/autofill/types").Feature<"btnHaystack", string[], {
1199
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
1200
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1201
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1202
+ }>;
1203
+ }>;
1204
+ }>;
1205
+ }>;
1206
+ export declare const formMFA: import("@protontech/autofill/types").Feature<"formMFA", boolean, {
1207
+ formTextMFA: import("@protontech/autofill/types").Feature<"formTextMFA", boolean, {
1208
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1209
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1210
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1211
+ }>;
1212
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1213
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1214
+ }>;
1215
+ }>;
1216
+ }>;
1217
+ formAttrsMFA: import("@protontech/autofill/types").Feature<"formAttrsMFA", boolean, {
1218
+ formAttributes: import("@protontech/autofill/types").Feature<"formAttributes", string[], {
1219
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1220
+ }>;
1221
+ }>;
1222
+ }>;
1223
+ export declare const formInputMFACandidates: import("@protontech/autofill/types").Feature<"formInputMFACandidates", number, {
1224
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1225
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1226
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1227
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1228
+ }>;
1229
+ }>;
1230
+ }>;
1231
+ }>;
1232
+ export declare const newsletterForm: import("@protontech/autofill/types").Feature<"newsletterForm", boolean, {
1233
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1234
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1235
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1236
+ }>;
1237
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1238
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1239
+ }>;
1240
+ }>;
1241
+ }>;
1242
+ export declare const searchForm: import("@protontech/autofill/types").Feature<"searchForm", boolean, {
1243
+ formTextHaystack: import("@protontech/autofill/types").Feature<"formTextHaystack", string[], {
1244
+ formTextAttrText: import("@protontech/autofill/types").Feature<"formTextAttrText", string, {
1245
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1246
+ }>;
1247
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1248
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1249
+ }>;
1250
+ }>;
1251
+ }>;
1252
+ export declare const formComplexity: import("@protontech/autofill/types").Feature<"formComplexityScaled", number, Record<"formComplexity", import("@protontech/autofill/types").Feature<"formComplexity", number, {
1253
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1254
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1255
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1256
+ }>;
1257
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1258
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1259
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1260
+ }>;
1261
+ }>;
1262
+ hidden: import("@protontech/autofill/types").Feature<"hidden", HTMLInputElement[], {
1263
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1264
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1265
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1266
+ }>;
1267
+ }>;
1268
+ }>;
1269
+ anchors: import("@protontech/autofill/types").Feature<"anchors", HTMLElement[], {
1270
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1271
+ }>;
1272
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
1273
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1274
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1275
+ }>;
1276
+ }>;
1277
+ }>>>;
1278
+ export declare const visibleFieldsCount: import("@protontech/autofill/types").Feature<"visibleFieldsCountScaled", number, Record<"visibleFieldsCount", import("@protontech/autofill/types").Feature<"visibleFieldsCount", number, {
1279
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1280
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1281
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1282
+ }>;
1283
+ }>;
1284
+ }>>>;
1285
+ export declare const visibleInputsCount: import("@protontech/autofill/types").Feature<"visibleInputsCountScaled", number, Record<"visibleInputsCount", import("@protontech/autofill/types").Feature<"visibleInputsCount", number, {
1286
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1287
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1288
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1289
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1290
+ }>;
1291
+ }>;
1292
+ }>;
1293
+ }>>>;
1294
+ export declare const fieldsetsCount: import("@protontech/autofill/types").Feature<"fieldsetsCountScaled", number, Record<"fieldsetsCount", import("@protontech/autofill/types").Feature<"fieldsetsCount", number, {
1295
+ [x: string]: import("@protontech/autofill/types").Feature<"fieldsets", HTMLFieldSetElement[], {
1296
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1297
+ }>;
1298
+ }>>>;
1299
+ export declare const textsCount: import("@protontech/autofill/types").Feature<"textsCountScaled", number, Record<"textsCount", import("@protontech/autofill/types").Feature<"textsCount", number, {
1300
+ [x: string]: import("@protontech/autofill/types").Feature<"texts", HTMLInputElement[], {
1301
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1302
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1303
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1304
+ }>;
1305
+ }>;
1306
+ }>;
1307
+ }>>>;
1308
+ export declare const readOnlyCount: import("@protontech/autofill/types").Feature<"readOnlyCountScaled", number, Record<"readOnlyCount", import("@protontech/autofill/types").Feature<"readOnlyCount", number, {
1309
+ [x: string]: import("@protontech/autofill/types").Feature<"readOnly", HTMLInputElement[], {
1310
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1311
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1312
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1313
+ }>;
1314
+ }>;
1315
+ }>;
1316
+ }>>>;
1317
+ export declare const textareasCount: import("@protontech/autofill/types").Feature<"textareasCountScaled", number, Record<"textareasCount", import("@protontech/autofill/types").Feature<"textareasCount", number, {
1318
+ [x: string]: import("@protontech/autofill/types").Feature<"textareas", HTMLTextAreaElement[], {
1319
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1320
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1321
+ }>;
1322
+ }>;
1323
+ }>>>;
1324
+ export declare const selectsCount: import("@protontech/autofill/types").Feature<"selectsCountScaled", number, Record<"selectsCount", import("@protontech/autofill/types").Feature<"selectsCount", number, {
1325
+ [x: string]: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
1326
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1327
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1328
+ }>;
1329
+ }>;
1330
+ }>>>;
1331
+ export declare const disabledCount: import("@protontech/autofill/types").Feature<"disabledCountScaled", number, Record<"disabledCount", import("@protontech/autofill/types").Feature<"disabledCount", number, {
1332
+ [x: string]: import("@protontech/autofill/types").Feature<"disabled", HTMLInputElement[], {
1333
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1334
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1335
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1336
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1337
+ }>;
1338
+ }>;
1339
+ }>;
1340
+ }>;
1341
+ }>>>;
1342
+ export declare const radiosCount: import("@protontech/autofill/types").Feature<"radiosCountScaled", number, Record<"radiosCount", import("@protontech/autofill/types").Feature<"radiosCount", number, {
1343
+ [x: string]: import("@protontech/autofill/types").Feature<"radios", HTMLInputElement[], {
1344
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1345
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1346
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1347
+ }>;
1348
+ }>;
1349
+ }>;
1350
+ }>>>;
1351
+ export declare const visibleIdentifiersCount: import("@protontech/autofill/types").Feature<"visibleIdentifiersCountScaled", number, Record<"visibleIdentifiersCount", import("@protontech/autofill/types").Feature<"visibleIdentifiersCount", number, {
1352
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1353
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1354
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1355
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1356
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1357
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1358
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1359
+ }>;
1360
+ }>;
1361
+ }>;
1362
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1363
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1364
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1365
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1366
+ }>;
1367
+ }>;
1368
+ }>;
1369
+ }>;
1370
+ }>;
1371
+ }>;
1372
+ }>>>;
1373
+ export declare const hiddenIdentifiersCount: import("@protontech/autofill/types").Feature<"hiddenIdentifiersCountScaled", number, Record<"hiddenIdentifiersCount", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCount", number, {
1374
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
1375
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1376
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1377
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1378
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1379
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1380
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1381
+ }>;
1382
+ }>;
1383
+ }>;
1384
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1385
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1386
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1387
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1388
+ }>;
1389
+ }>;
1390
+ }>;
1391
+ }>;
1392
+ }>;
1393
+ }>;
1394
+ }>>>;
1395
+ export declare const hiddenCount: import("@protontech/autofill/types").Feature<"hiddenCountScaled", number, Record<"hiddenCount", import("@protontech/autofill/types").Feature<"hiddenCount", number, {
1396
+ [x: string]: import("@protontech/autofill/types").Feature<"hidden", HTMLInputElement[], {
1397
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1398
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1399
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1400
+ }>;
1401
+ }>;
1402
+ }>;
1403
+ }>>>;
1404
+ export declare const visiblePasswordsCount: import("@protontech/autofill/types").Feature<"visiblePasswordsCountScaled", number, Record<"visiblePasswordsCount", import("@protontech/autofill/types").Feature<"visiblePasswordsCount", number, {
1405
+ [x: string]: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1406
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1407
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1408
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1409
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1410
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1411
+ }>;
1412
+ }>;
1413
+ }>;
1414
+ }>;
1415
+ }>;
1416
+ }>>>;
1417
+ export declare const hiddenPasswordsCount: import("@protontech/autofill/types").Feature<"hiddenPasswordsCountScaled", number, Record<"hiddenPasswordsCount", import("@protontech/autofill/types").Feature<"hiddenPasswordsCount", number, {
1418
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
1419
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1420
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1421
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1422
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1423
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1424
+ }>;
1425
+ }>;
1426
+ }>;
1427
+ }>;
1428
+ }>;
1429
+ }>>>;
1430
+ export declare const usernamesCount: import("@protontech/autofill/types").Feature<"usernamesCountScaled", number, Record<"usernamesCount", import("@protontech/autofill/types").Feature<"usernamesCount", number, {
1431
+ [x: string]: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1432
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1433
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1434
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1435
+ }>;
1436
+ }>;
1437
+ }>;
1438
+ }>>>;
1439
+ export declare const emailsCount: import("@protontech/autofill/types").Feature<"emailsCountScaled", number, Record<"emailsCount", import("@protontech/autofill/types").Feature<"emailsCount", number, {
1440
+ [x: string]: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1441
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1442
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1443
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1444
+ }>;
1445
+ }>;
1446
+ }>;
1447
+ }>>>;
1448
+ export declare const submitsCount: import("@protontech/autofill/types").Feature<"submitsCountScaled", number, Record<"submitsCount", import("@protontech/autofill/types").Feature<"submitsCount", number, {
1449
+ [x: string]: import("@protontech/autofill/types").Feature<"submits", HTMLFieldElement[], {
1450
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1451
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1452
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1453
+ }>;
1454
+ }>;
1455
+ }>;
1456
+ }>>>;
1457
+ export declare const identitiesCount: import("@protontech/autofill/types").Feature<"identitiesCountScaled", number, Record<"identitiesCount", import("@protontech/autofill/types").Feature<"identitiesCount", number, {
1458
+ [x: string]: import("@protontech/autofill/types").Feature<"identities", HTMLInputElement[], {
1459
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1460
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1461
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1462
+ }>;
1463
+ }>;
1464
+ ccs: import("@protontech/autofill/types").Feature<"ccs", HTMLElement[], {
1465
+ ccInputs: import("@protontech/autofill/types").Feature<"ccInputs", HTMLInputElement[], {
1466
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1467
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1468
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1469
+ }>;
1470
+ }>;
1471
+ }>;
1472
+ ccSelects: import("@protontech/autofill/types").Feature<"ccSelects", HTMLSelectElement[], {
1473
+ selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
1474
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1475
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1476
+ }>;
1477
+ }>;
1478
+ }>;
1479
+ }>;
1480
+ }>;
1481
+ }>>>;
1482
+ export declare const ccsCount: import("@protontech/autofill/types").Feature<"ccsCountScaled", number, Record<"ccsCount", import("@protontech/autofill/types").Feature<"ccsCount", number, {
1483
+ [x: string]: import("@protontech/autofill/types").Feature<"ccs", HTMLElement[], {
1484
+ ccInputs: import("@protontech/autofill/types").Feature<"ccInputs", HTMLInputElement[], {
1485
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1486
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1487
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1488
+ }>;
1489
+ }>;
1490
+ }>;
1491
+ ccSelects: import("@protontech/autofill/types").Feature<"ccSelects", HTMLSelectElement[], {
1492
+ selects: import("@protontech/autofill/types").Feature<"selects", HTMLSelectElement[], {
1493
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1494
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1495
+ }>;
1496
+ }>;
1497
+ }>;
1498
+ }>;
1499
+ }>>>;
1500
+ export declare const hasTels: import("@protontech/autofill/types").Feature<"hasTels", boolean, {
1501
+ tels: import("@protontech/autofill/types").Feature<"tels", HTMLInputElement[], {
1502
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1503
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1504
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1505
+ }>;
1506
+ }>;
1507
+ }>;
1508
+ }>;
1509
+ export declare const hasOAuth: import("@protontech/autofill/types").Feature<"hasOAuth", boolean, {
1510
+ oauths: import("@protontech/autofill/types").Feature<"oauths", HTMLElement[], {
1511
+ socials: import("@protontech/autofill/types").Feature<"socials", HTMLElement[], {
1512
+ parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
1513
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1514
+ }>;
1515
+ }>;
1516
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
1517
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1518
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1519
+ }>;
1520
+ }>;
1521
+ }>;
1522
+ }>;
1523
+ export declare const hasCaptchas: import("@protontech/autofill/types").Feature<"hasCaptchas", boolean, {
1524
+ captchas: import("@protontech/autofill/types").Feature<"captchas", HTMLElement[], {
1525
+ parent: import("@protontech/autofill/types").Feature<"parent", HTMLElement, {
1526
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1527
+ }>;
1528
+ }>;
1529
+ }>;
1530
+ export declare const hasFiles: import("@protontech/autofill/types").Feature<"hasFiles", boolean, {
1531
+ files: import("@protontech/autofill/types").Feature<"files", HTMLInputElement[], {
1532
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1533
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1534
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1535
+ }>;
1536
+ }>;
1537
+ }>;
1538
+ }>;
1539
+ export declare const hasDate: import("@protontech/autofill/types").Feature<"hasDate", boolean, {
1540
+ dates: import("@protontech/autofill/types").Feature<"dates", HTMLInputElement[], {
1541
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1542
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1543
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1544
+ }>;
1545
+ }>;
1546
+ }>;
1547
+ }>;
1548
+ export declare const hasNumber: import("@protontech/autofill/types").Feature<"hasNumber", boolean, {
1549
+ numbers: import("@protontech/autofill/types").Feature<"numbers", HTMLInputElement[], {
1550
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1551
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1552
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1553
+ }>;
1554
+ }>;
1555
+ }>;
1556
+ }>;
1557
+ export declare const oneVisibleField: import("@protontech/autofill/types").Feature<"oneVisibleField", boolean, {
1558
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1559
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1560
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1561
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1562
+ }>;
1563
+ }>;
1564
+ }>;
1565
+ }>;
1566
+ export declare const twoVisibleFields: import("@protontech/autofill/types").Feature<"twoVisibleFields", boolean, {
1567
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1568
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1569
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1570
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1571
+ }>;
1572
+ }>;
1573
+ }>;
1574
+ }>;
1575
+ export declare const threeOrMoreVisibleFields: import("@protontech/autofill/types").Feature<"threeOrMoreVisibleFields", boolean, {
1576
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1577
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1578
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1579
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1580
+ }>;
1581
+ }>;
1582
+ }>;
1583
+ }>;
1584
+ export declare const noPasswords: import("@protontech/autofill/types").Feature<"noPasswords", boolean, {
1585
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1586
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1587
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1588
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1589
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1590
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1591
+ }>;
1592
+ }>;
1593
+ }>;
1594
+ }>;
1595
+ }>;
1596
+ }>;
1597
+ export declare const onePassword: import("@protontech/autofill/types").Feature<"onePassword", boolean, {
1598
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1599
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1600
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1601
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1602
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1603
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1604
+ }>;
1605
+ }>;
1606
+ }>;
1607
+ }>;
1608
+ }>;
1609
+ }>;
1610
+ export declare const twoPasswords: import("@protontech/autofill/types").Feature<"twoPasswords", boolean, {
1611
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1612
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1613
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1614
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1615
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1616
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1617
+ }>;
1618
+ }>;
1619
+ }>;
1620
+ }>;
1621
+ }>;
1622
+ }>;
1623
+ export declare const threeOrMorePasswords: import("@protontech/autofill/types").Feature<"threeOrMorePasswords", boolean, {
1624
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1625
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1626
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1627
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1628
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1629
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1630
+ }>;
1631
+ }>;
1632
+ }>;
1633
+ }>;
1634
+ }>;
1635
+ }>;
1636
+ export declare const noIdentifiers: import("@protontech/autofill/types").Feature<"noIdentifiers", boolean, {
1637
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1638
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1639
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1640
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1641
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1642
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1643
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1644
+ }>;
1645
+ }>;
1646
+ }>;
1647
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1648
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1649
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1650
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1651
+ }>;
1652
+ }>;
1653
+ }>;
1654
+ }>;
1655
+ }>;
1656
+ }>;
1657
+ }>;
1658
+ export declare const oneIdentifier: import("@protontech/autofill/types").Feature<"oneIdentifier", boolean, {
1659
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1660
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1661
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1662
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1663
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1664
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1665
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1666
+ }>;
1667
+ }>;
1668
+ }>;
1669
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1670
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1671
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1672
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1673
+ }>;
1674
+ }>;
1675
+ }>;
1676
+ }>;
1677
+ }>;
1678
+ }>;
1679
+ }>;
1680
+ export declare const twoIdentifiers: import("@protontech/autofill/types").Feature<"twoIdentifiers", boolean, {
1681
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1682
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1683
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1684
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1685
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1686
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1687
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1688
+ }>;
1689
+ }>;
1690
+ }>;
1691
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1692
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1693
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1694
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1695
+ }>;
1696
+ }>;
1697
+ }>;
1698
+ }>;
1699
+ }>;
1700
+ }>;
1701
+ }>;
1702
+ export declare const threeOrMoreIdentifiers: import("@protontech/autofill/types").Feature<"threeOrMoreIdentifiers", boolean, {
1703
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1704
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1705
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1706
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1707
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1708
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1709
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1710
+ }>;
1711
+ }>;
1712
+ }>;
1713
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1714
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1715
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1716
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1717
+ }>;
1718
+ }>;
1719
+ }>;
1720
+ }>;
1721
+ }>;
1722
+ }>;
1723
+ }>;
1724
+ export declare const inputRatio: import("@protontech/autofill/types").Feature<"inputRatio", number, {
1725
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1726
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1727
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1728
+ }>;
1729
+ }>;
1730
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1731
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1732
+ }>;
1733
+ }>;
1734
+ export declare const hiddenRatio: import("@protontech/autofill/types").Feature<"hiddenRatio", number, {
1735
+ hidden: import("@protontech/autofill/types").Feature<"hidden", HTMLInputElement[], {
1736
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1737
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1738
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1739
+ }>;
1740
+ }>;
1741
+ }>;
1742
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1743
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1744
+ }>;
1745
+ }>;
1746
+ export declare const visibleRatio: import("@protontech/autofill/types").Feature<"visibleRatio", number, {
1747
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1748
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1749
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1750
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1751
+ }>;
1752
+ }>;
1753
+ }>;
1754
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1755
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1756
+ }>;
1757
+ }>;
1758
+ export declare const checkboxRatio: import("@protontech/autofill/types").Feature<"checkboxRatio", number, {
1759
+ checkboxes: import("@protontech/autofill/types").Feature<"checkboxes", HTMLInputElement[], {
1760
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1761
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1762
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1763
+ }>;
1764
+ }>;
1765
+ }>;
1766
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1767
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1768
+ }>;
1769
+ }>;
1770
+ export declare const emailRatio: import("@protontech/autofill/types").Feature<"emailRatio", number, {
1771
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1772
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1773
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1774
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1775
+ }>;
1776
+ }>;
1777
+ }>;
1778
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1779
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1780
+ }>;
1781
+ }>;
1782
+ export declare const usernameRatio: import("@protontech/autofill/types").Feature<"usernameRatio", number, {
1783
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1784
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1785
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1786
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1787
+ }>;
1788
+ }>;
1789
+ }>;
1790
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1791
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1792
+ }>;
1793
+ }>;
1794
+ export declare const hiddenIdentifierRatio: import("@protontech/autofill/types").Feature<"hiddenIdentifierRatio", number, {
1795
+ hiddenIdentifiers: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
1796
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1797
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1798
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1799
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1800
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1801
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1802
+ }>;
1803
+ }>;
1804
+ }>;
1805
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1806
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1807
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1808
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1809
+ }>;
1810
+ }>;
1811
+ }>;
1812
+ }>;
1813
+ }>;
1814
+ }>;
1815
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1816
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1817
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1818
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1819
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1820
+ }>;
1821
+ }>;
1822
+ }>;
1823
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1824
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1825
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1826
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1827
+ }>;
1828
+ }>;
1829
+ }>;
1830
+ }>;
1831
+ }>;
1832
+ export declare const hiddenPasswordRatio: import("@protontech/autofill/types").Feature<"hiddenPasswordRatio", number, {
1833
+ hiddenPasswords: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
1834
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1835
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1836
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1837
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1838
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1839
+ }>;
1840
+ }>;
1841
+ }>;
1842
+ }>;
1843
+ }>;
1844
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1845
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1846
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1847
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1848
+ }>;
1849
+ }>;
1850
+ }>;
1851
+ }>;
1852
+ export declare const identifierRatio: import("@protontech/autofill/types").Feature<"identifierRatio", number, {
1853
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
1854
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
1855
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
1856
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
1857
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1858
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1859
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1860
+ }>;
1861
+ }>;
1862
+ }>;
1863
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
1864
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1865
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1866
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1867
+ }>;
1868
+ }>;
1869
+ }>;
1870
+ }>;
1871
+ }>;
1872
+ }>;
1873
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1874
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1875
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1876
+ }>;
1877
+ }>;
1878
+ }>;
1879
+ export declare const passwordRatio: import("@protontech/autofill/types").Feature<"passwordRatio", number, {
1880
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
1881
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
1882
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
1883
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
1884
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1885
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1886
+ }>;
1887
+ }>;
1888
+ }>;
1889
+ }>;
1890
+ }>;
1891
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1892
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1893
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1894
+ }>;
1895
+ }>;
1896
+ }>;
1897
+ export declare const requiredRatio: import("@protontech/autofill/types").Feature<"requiredRatio", number, {
1898
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
1899
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1900
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1901
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1902
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1903
+ }>;
1904
+ }>;
1905
+ }>;
1906
+ }>;
1907
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1908
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1909
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1910
+ }>;
1911
+ }>;
1912
+ }>;
1913
+ export declare const disabledRatio: import("@protontech/autofill/types").Feature<"disabledRatio", number, {
1914
+ disabled: import("@protontech/autofill/types").Feature<"disabled", HTMLInputElement[], {
1915
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
1916
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1917
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1918
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1919
+ }>;
1920
+ }>;
1921
+ }>;
1922
+ }>;
1923
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
1924
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
1925
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1926
+ }>;
1927
+ }>;
1928
+ }>;
1929
+ export declare const multistepForm_multiAuthForm: import("@protontech/autofill/types").Feature<"multistepForm,multiAuthForm", number, Record<"multistepForm", import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
1930
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
1931
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
1932
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
1933
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1934
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1935
+ }>;
1936
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
1937
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1938
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1939
+ }>;
1940
+ }>;
1941
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
1942
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1943
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1944
+ }>;
1945
+ }>;
1946
+ }>;
1947
+ }>;
1948
+ }>;
1949
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
1950
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1951
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1952
+ }>;
1953
+ }>;
1954
+ }>> & Record<"multiAuthForm", import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
1955
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
1956
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
1957
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
1958
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
1959
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1960
+ }>;
1961
+ }>;
1962
+ }>;
1963
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
1964
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
1965
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
1966
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1967
+ }>;
1968
+ }>;
1969
+ }>;
1970
+ }>;
1971
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
1972
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
1973
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1974
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1975
+ }>;
1976
+ }>;
1977
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
1978
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
1979
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1980
+ }>;
1981
+ }>;
1982
+ }>;
1983
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
1984
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
1985
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
1986
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
1987
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1988
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1989
+ }>;
1990
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
1991
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1992
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1993
+ }>;
1994
+ }>;
1995
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
1996
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
1997
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
1998
+ }>;
1999
+ }>;
2000
+ }>;
2001
+ }>;
2002
+ }>;
2003
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
2004
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2005
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2006
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2007
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2008
+ }>;
2009
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2010
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2011
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2012
+ }>;
2013
+ }>;
2014
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2015
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2016
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2017
+ }>;
2018
+ }>;
2019
+ }>;
2020
+ }>;
2021
+ }>;
2022
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2023
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2024
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2025
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2026
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2027
+ }>;
2028
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2029
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2030
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2031
+ }>;
2032
+ }>;
2033
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2034
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2035
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2036
+ }>;
2037
+ }>;
2038
+ }>;
2039
+ }>;
2040
+ }>;
2041
+ }>;
2042
+ }>>>;
2043
+ export declare const visibleRatio_visibleFieldsCount: import("@protontech/autofill/types").Feature<"visibleRatio,visibleFieldsCountScaled", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2044
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2045
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2046
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2047
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2048
+ }>;
2049
+ }>;
2050
+ }>;
2051
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2052
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2053
+ }>;
2054
+ }>> & Record<"visibleFieldsCountScaled", import("@protontech/autofill/types").Feature<"visibleFieldsCountScaled", number, Record<"visibleFieldsCount", import("@protontech/autofill/types").Feature<"visibleFieldsCount", number, {
2055
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2056
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2057
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2058
+ }>;
2059
+ }>;
2060
+ }>>>>>;
2061
+ export declare const visibleRatio_visibleIdentifiersCount: import("@protontech/autofill/types").Feature<"visibleRatio,visibleIdentifiersCountScaled", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2062
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2063
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2064
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2065
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2066
+ }>;
2067
+ }>;
2068
+ }>;
2069
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2070
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2071
+ }>;
2072
+ }>> & Record<"visibleIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"visibleIdentifiersCountScaled", number, Record<"visibleIdentifiersCount", import("@protontech/autofill/types").Feature<"visibleIdentifiersCount", number, {
2073
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2074
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2075
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2076
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2077
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2078
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2079
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2080
+ }>;
2081
+ }>;
2082
+ }>;
2083
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2084
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2085
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2086
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2087
+ }>;
2088
+ }>;
2089
+ }>;
2090
+ }>;
2091
+ }>;
2092
+ }>;
2093
+ }>>>>>;
2094
+ export declare const visibleRatio_visiblePasswordsCount: import("@protontech/autofill/types").Feature<"visibleRatio,visiblePasswordsCountScaled", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2095
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2096
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2097
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2098
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2099
+ }>;
2100
+ }>;
2101
+ }>;
2102
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2103
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2104
+ }>;
2105
+ }>> & Record<"visiblePasswordsCountScaled", import("@protontech/autofill/types").Feature<"visiblePasswordsCountScaled", number, Record<"visiblePasswordsCount", import("@protontech/autofill/types").Feature<"visiblePasswordsCount", number, {
2106
+ [x: string]: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2107
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2108
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2109
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2110
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2111
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2112
+ }>;
2113
+ }>;
2114
+ }>;
2115
+ }>;
2116
+ }>;
2117
+ }>>>>>;
2118
+ export declare const visibleRatio_hiddenIdentifiersCount: import("@protontech/autofill/types").Feature<"visibleRatio,hiddenIdentifiersCountScaled", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2119
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2120
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2121
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2122
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2123
+ }>;
2124
+ }>;
2125
+ }>;
2126
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2127
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2128
+ }>;
2129
+ }>> & Record<"hiddenIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCountScaled", number, Record<"hiddenIdentifiersCount", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCount", number, {
2130
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
2131
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2132
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2133
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2134
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2135
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2136
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2137
+ }>;
2138
+ }>;
2139
+ }>;
2140
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2141
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2142
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2143
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2144
+ }>;
2145
+ }>;
2146
+ }>;
2147
+ }>;
2148
+ }>;
2149
+ }>;
2150
+ }>>>>>;
2151
+ export declare const visibleRatio_hiddenPasswordsCount: import("@protontech/autofill/types").Feature<"visibleRatio,hiddenPasswordsCountScaled", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2152
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2153
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2154
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2155
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2156
+ }>;
2157
+ }>;
2158
+ }>;
2159
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2160
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2161
+ }>;
2162
+ }>> & Record<"hiddenPasswordsCountScaled", import("@protontech/autofill/types").Feature<"hiddenPasswordsCountScaled", number, Record<"hiddenPasswordsCount", import("@protontech/autofill/types").Feature<"hiddenPasswordsCount", number, {
2163
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
2164
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2165
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2166
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2167
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2168
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2169
+ }>;
2170
+ }>;
2171
+ }>;
2172
+ }>;
2173
+ }>;
2174
+ }>>>>>;
2175
+ export declare const visibleRatio_multiAuthForm: import("@protontech/autofill/types").Feature<"visibleRatio,multiAuthForm", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2176
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2177
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2178
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2179
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2180
+ }>;
2181
+ }>;
2182
+ }>;
2183
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2184
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2185
+ }>;
2186
+ }>> & Record<"multiAuthForm", import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
2187
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
2188
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
2189
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2190
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2191
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2192
+ }>;
2193
+ }>;
2194
+ }>;
2195
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
2196
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2197
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2198
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2199
+ }>;
2200
+ }>;
2201
+ }>;
2202
+ }>;
2203
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
2204
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
2205
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2206
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2207
+ }>;
2208
+ }>;
2209
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
2210
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2211
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2212
+ }>;
2213
+ }>;
2214
+ }>;
2215
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
2216
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
2217
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2218
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2219
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2220
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2221
+ }>;
2222
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2223
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2224
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2225
+ }>;
2226
+ }>;
2227
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2228
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2229
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2230
+ }>;
2231
+ }>;
2232
+ }>;
2233
+ }>;
2234
+ }>;
2235
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
2236
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2237
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2238
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2239
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2240
+ }>;
2241
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2242
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2243
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2244
+ }>;
2245
+ }>;
2246
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2247
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2248
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2249
+ }>;
2250
+ }>;
2251
+ }>;
2252
+ }>;
2253
+ }>;
2254
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2255
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2256
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2257
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2258
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2259
+ }>;
2260
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2261
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2262
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2263
+ }>;
2264
+ }>;
2265
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2266
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2267
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2268
+ }>;
2269
+ }>;
2270
+ }>;
2271
+ }>;
2272
+ }>;
2273
+ }>;
2274
+ }>>>;
2275
+ export declare const visibleRatio_multistepForm: import("@protontech/autofill/types").Feature<"visibleRatio,multistepForm", number, Record<"visibleRatio", import("@protontech/autofill/types").Feature<"visibleRatio", number, {
2276
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
2277
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2278
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2279
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2280
+ }>;
2281
+ }>;
2282
+ }>;
2283
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2284
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2285
+ }>;
2286
+ }>> & Record<"multistepForm", import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
2287
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2288
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2289
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2290
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2291
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2292
+ }>;
2293
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2294
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2295
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2296
+ }>;
2297
+ }>;
2298
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2299
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2300
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2301
+ }>;
2302
+ }>;
2303
+ }>;
2304
+ }>;
2305
+ }>;
2306
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
2307
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2308
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2309
+ }>;
2310
+ }>;
2311
+ }>>>;
2312
+ export declare const identifierRatio_visibleFieldsCount: import("@protontech/autofill/types").Feature<"identifierRatio,visibleFieldsCountScaled", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2313
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2314
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2315
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2316
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2317
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2318
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2319
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2320
+ }>;
2321
+ }>;
2322
+ }>;
2323
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2324
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2325
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2326
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2327
+ }>;
2328
+ }>;
2329
+ }>;
2330
+ }>;
2331
+ }>;
2332
+ }>;
2333
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2334
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2335
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2336
+ }>;
2337
+ }>;
2338
+ }>> & Record<"visibleFieldsCountScaled", import("@protontech/autofill/types").Feature<"visibleFieldsCountScaled", number, Record<"visibleFieldsCount", import("@protontech/autofill/types").Feature<"visibleFieldsCount", number, {
2339
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2340
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2341
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2342
+ }>;
2343
+ }>;
2344
+ }>>>>>;
2345
+ export declare const identifierRatio_visibleIdentifiersCount: import("@protontech/autofill/types").Feature<"identifierRatio,visibleIdentifiersCountScaled", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2346
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2347
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2348
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2349
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2350
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2351
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2352
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2353
+ }>;
2354
+ }>;
2355
+ }>;
2356
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2357
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2358
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2359
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2360
+ }>;
2361
+ }>;
2362
+ }>;
2363
+ }>;
2364
+ }>;
2365
+ }>;
2366
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2367
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2368
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2369
+ }>;
2370
+ }>;
2371
+ }>> & Record<"visibleIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"visibleIdentifiersCountScaled", number, Record<"visibleIdentifiersCount", import("@protontech/autofill/types").Feature<"visibleIdentifiersCount", number, {
2372
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2373
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2374
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2375
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2376
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2377
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2378
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2379
+ }>;
2380
+ }>;
2381
+ }>;
2382
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2383
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2384
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2385
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2386
+ }>;
2387
+ }>;
2388
+ }>;
2389
+ }>;
2390
+ }>;
2391
+ }>;
2392
+ }>>>>>;
2393
+ export declare const identifierRatio_visiblePasswordsCount: import("@protontech/autofill/types").Feature<"identifierRatio,visiblePasswordsCountScaled", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2394
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2395
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2396
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2397
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2398
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2399
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2400
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2401
+ }>;
2402
+ }>;
2403
+ }>;
2404
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2405
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2406
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2407
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2408
+ }>;
2409
+ }>;
2410
+ }>;
2411
+ }>;
2412
+ }>;
2413
+ }>;
2414
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2415
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2416
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2417
+ }>;
2418
+ }>;
2419
+ }>> & Record<"visiblePasswordsCountScaled", import("@protontech/autofill/types").Feature<"visiblePasswordsCountScaled", number, Record<"visiblePasswordsCount", import("@protontech/autofill/types").Feature<"visiblePasswordsCount", number, {
2420
+ [x: string]: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2421
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2422
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2423
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2424
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2425
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2426
+ }>;
2427
+ }>;
2428
+ }>;
2429
+ }>;
2430
+ }>;
2431
+ }>>>>>;
2432
+ export declare const identifierRatio_hiddenIdentifiersCount: import("@protontech/autofill/types").Feature<"identifierRatio,hiddenIdentifiersCountScaled", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2433
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2434
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2435
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2436
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2437
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2438
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2439
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2440
+ }>;
2441
+ }>;
2442
+ }>;
2443
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2444
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2445
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2446
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2447
+ }>;
2448
+ }>;
2449
+ }>;
2450
+ }>;
2451
+ }>;
2452
+ }>;
2453
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2454
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2455
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2456
+ }>;
2457
+ }>;
2458
+ }>> & Record<"hiddenIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCountScaled", number, Record<"hiddenIdentifiersCount", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCount", number, {
2459
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
2460
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2461
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2462
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2463
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2464
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2465
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2466
+ }>;
2467
+ }>;
2468
+ }>;
2469
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2470
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2471
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2472
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2473
+ }>;
2474
+ }>;
2475
+ }>;
2476
+ }>;
2477
+ }>;
2478
+ }>;
2479
+ }>>>>>;
2480
+ export declare const identifierRatio_hiddenPasswordsCount: import("@protontech/autofill/types").Feature<"identifierRatio,hiddenPasswordsCountScaled", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2481
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2482
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2483
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2484
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2485
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2486
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2487
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2488
+ }>;
2489
+ }>;
2490
+ }>;
2491
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2492
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2493
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2494
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2495
+ }>;
2496
+ }>;
2497
+ }>;
2498
+ }>;
2499
+ }>;
2500
+ }>;
2501
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2502
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2503
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2504
+ }>;
2505
+ }>;
2506
+ }>> & Record<"hiddenPasswordsCountScaled", import("@protontech/autofill/types").Feature<"hiddenPasswordsCountScaled", number, Record<"hiddenPasswordsCount", import("@protontech/autofill/types").Feature<"hiddenPasswordsCount", number, {
2507
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
2508
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2509
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2510
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2511
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2512
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2513
+ }>;
2514
+ }>;
2515
+ }>;
2516
+ }>;
2517
+ }>;
2518
+ }>>>>>;
2519
+ export declare const identifierRatio_multiAuthForm: import("@protontech/autofill/types").Feature<"identifierRatio,multiAuthForm", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2520
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2521
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2522
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2523
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2524
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2525
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2526
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2527
+ }>;
2528
+ }>;
2529
+ }>;
2530
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2531
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2532
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2533
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2534
+ }>;
2535
+ }>;
2536
+ }>;
2537
+ }>;
2538
+ }>;
2539
+ }>;
2540
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2541
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2542
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2543
+ }>;
2544
+ }>;
2545
+ }>> & Record<"multiAuthForm", import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
2546
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
2547
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
2548
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2549
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2550
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2551
+ }>;
2552
+ }>;
2553
+ }>;
2554
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
2555
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2556
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2557
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2558
+ }>;
2559
+ }>;
2560
+ }>;
2561
+ }>;
2562
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
2563
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
2564
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2565
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2566
+ }>;
2567
+ }>;
2568
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
2569
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2570
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2571
+ }>;
2572
+ }>;
2573
+ }>;
2574
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
2575
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
2576
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2577
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2578
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2579
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2580
+ }>;
2581
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2582
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2583
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2584
+ }>;
2585
+ }>;
2586
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2587
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2588
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2589
+ }>;
2590
+ }>;
2591
+ }>;
2592
+ }>;
2593
+ }>;
2594
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
2595
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2596
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2597
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2598
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2599
+ }>;
2600
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2601
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2602
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2603
+ }>;
2604
+ }>;
2605
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2606
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2607
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2608
+ }>;
2609
+ }>;
2610
+ }>;
2611
+ }>;
2612
+ }>;
2613
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2614
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2615
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2616
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2617
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2618
+ }>;
2619
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2620
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2621
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2622
+ }>;
2623
+ }>;
2624
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2625
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2626
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2627
+ }>;
2628
+ }>;
2629
+ }>;
2630
+ }>;
2631
+ }>;
2632
+ }>;
2633
+ }>>>;
2634
+ export declare const identifierRatio_multistepForm: import("@protontech/autofill/types").Feature<"identifierRatio,multistepForm", number, Record<"identifierRatio", import("@protontech/autofill/types").Feature<"identifierRatio", number, {
2635
+ visibleIdentifiers: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2636
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2637
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2638
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2639
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2640
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2641
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2642
+ }>;
2643
+ }>;
2644
+ }>;
2645
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2646
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2647
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2648
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2649
+ }>;
2650
+ }>;
2651
+ }>;
2652
+ }>;
2653
+ }>;
2654
+ }>;
2655
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2656
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2657
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2658
+ }>;
2659
+ }>;
2660
+ }>> & Record<"multistepForm", import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
2661
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2662
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2663
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2664
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2665
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2666
+ }>;
2667
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2668
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2669
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2670
+ }>;
2671
+ }>;
2672
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2673
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2674
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2675
+ }>;
2676
+ }>;
2677
+ }>;
2678
+ }>;
2679
+ }>;
2680
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
2681
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2682
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2683
+ }>;
2684
+ }>;
2685
+ }>>>;
2686
+ export declare const passwordRatio_visibleFieldsCount: import("@protontech/autofill/types").Feature<"passwordRatio,visibleFieldsCountScaled", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2687
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2688
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2689
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2690
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2691
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2692
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2693
+ }>;
2694
+ }>;
2695
+ }>;
2696
+ }>;
2697
+ }>;
2698
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2699
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2700
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2701
+ }>;
2702
+ }>;
2703
+ }>> & Record<"visibleFieldsCountScaled", import("@protontech/autofill/types").Feature<"visibleFieldsCountScaled", number, Record<"visibleFieldsCount", import("@protontech/autofill/types").Feature<"visibleFieldsCount", number, {
2704
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2705
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2706
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2707
+ }>;
2708
+ }>;
2709
+ }>>>>>;
2710
+ export declare const passwordRatio_visibleIdentifiersCount: import("@protontech/autofill/types").Feature<"passwordRatio,visibleIdentifiersCountScaled", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2711
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2712
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2713
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2714
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2715
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2716
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2717
+ }>;
2718
+ }>;
2719
+ }>;
2720
+ }>;
2721
+ }>;
2722
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2723
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2724
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2725
+ }>;
2726
+ }>;
2727
+ }>> & Record<"visibleIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"visibleIdentifiersCountScaled", number, Record<"visibleIdentifiersCount", import("@protontech/autofill/types").Feature<"visibleIdentifiersCount", number, {
2728
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
2729
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2730
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2731
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2732
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2733
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2734
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2735
+ }>;
2736
+ }>;
2737
+ }>;
2738
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2739
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2740
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2741
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2742
+ }>;
2743
+ }>;
2744
+ }>;
2745
+ }>;
2746
+ }>;
2747
+ }>;
2748
+ }>>>>>;
2749
+ export declare const passwordRatio_visiblePasswordsCount: import("@protontech/autofill/types").Feature<"passwordRatio,visiblePasswordsCountScaled", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2750
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2751
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2752
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2753
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2754
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2755
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2756
+ }>;
2757
+ }>;
2758
+ }>;
2759
+ }>;
2760
+ }>;
2761
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2762
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2763
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2764
+ }>;
2765
+ }>;
2766
+ }>> & Record<"visiblePasswordsCountScaled", import("@protontech/autofill/types").Feature<"visiblePasswordsCountScaled", number, Record<"visiblePasswordsCount", import("@protontech/autofill/types").Feature<"visiblePasswordsCount", number, {
2767
+ [x: string]: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2768
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2769
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2770
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2771
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2772
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2773
+ }>;
2774
+ }>;
2775
+ }>;
2776
+ }>;
2777
+ }>;
2778
+ }>>>>>;
2779
+ export declare const passwordRatio_hiddenIdentifiersCount: import("@protontech/autofill/types").Feature<"passwordRatio,hiddenIdentifiersCountScaled", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2780
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2781
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2782
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2783
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2784
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2785
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2786
+ }>;
2787
+ }>;
2788
+ }>;
2789
+ }>;
2790
+ }>;
2791
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2792
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2793
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2794
+ }>;
2795
+ }>;
2796
+ }>> & Record<"hiddenIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCountScaled", number, Record<"hiddenIdentifiersCount", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCount", number, {
2797
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
2798
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
2799
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
2800
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
2801
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2802
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2803
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2804
+ }>;
2805
+ }>;
2806
+ }>;
2807
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
2808
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2809
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2810
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2811
+ }>;
2812
+ }>;
2813
+ }>;
2814
+ }>;
2815
+ }>;
2816
+ }>;
2817
+ }>>>>>;
2818
+ export declare const passwordRatio_hiddenPasswordsCount: import("@protontech/autofill/types").Feature<"passwordRatio,hiddenPasswordsCountScaled", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2819
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2820
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2821
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2822
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2823
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2824
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2825
+ }>;
2826
+ }>;
2827
+ }>;
2828
+ }>;
2829
+ }>;
2830
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2831
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2832
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2833
+ }>;
2834
+ }>;
2835
+ }>> & Record<"hiddenPasswordsCountScaled", import("@protontech/autofill/types").Feature<"hiddenPasswordsCountScaled", number, Record<"hiddenPasswordsCount", import("@protontech/autofill/types").Feature<"hiddenPasswordsCount", number, {
2836
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
2837
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2838
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2839
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2840
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2841
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2842
+ }>;
2843
+ }>;
2844
+ }>;
2845
+ }>;
2846
+ }>;
2847
+ }>>>>>;
2848
+ export declare const passwordRatio_multiAuthForm: import("@protontech/autofill/types").Feature<"passwordRatio,multiAuthForm", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2849
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2850
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2851
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2852
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2853
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2854
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2855
+ }>;
2856
+ }>;
2857
+ }>;
2858
+ }>;
2859
+ }>;
2860
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2861
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2862
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2863
+ }>;
2864
+ }>;
2865
+ }>> & Record<"multiAuthForm", import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
2866
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
2867
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
2868
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2869
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2870
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2871
+ }>;
2872
+ }>;
2873
+ }>;
2874
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
2875
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
2876
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
2877
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2878
+ }>;
2879
+ }>;
2880
+ }>;
2881
+ }>;
2882
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
2883
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
2884
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2885
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2886
+ }>;
2887
+ }>;
2888
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
2889
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2890
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2891
+ }>;
2892
+ }>;
2893
+ }>;
2894
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
2895
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
2896
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2897
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2898
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2899
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2900
+ }>;
2901
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2902
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2903
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2904
+ }>;
2905
+ }>;
2906
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2907
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2908
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2909
+ }>;
2910
+ }>;
2911
+ }>;
2912
+ }>;
2913
+ }>;
2914
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
2915
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2916
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2917
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2918
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2919
+ }>;
2920
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2921
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2922
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2923
+ }>;
2924
+ }>;
2925
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2926
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2927
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2928
+ }>;
2929
+ }>;
2930
+ }>;
2931
+ }>;
2932
+ }>;
2933
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2934
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2935
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2936
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2937
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2938
+ }>;
2939
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2940
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2941
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2942
+ }>;
2943
+ }>;
2944
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2945
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2946
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2947
+ }>;
2948
+ }>;
2949
+ }>;
2950
+ }>;
2951
+ }>;
2952
+ }>;
2953
+ }>>>;
2954
+ export declare const passwordRatio_multistepForm: import("@protontech/autofill/types").Feature<"passwordRatio,multistepForm", number, Record<"passwordRatio", import("@protontech/autofill/types").Feature<"passwordRatio", number, {
2955
+ visiblePasswords: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
2956
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
2957
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
2958
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
2959
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2960
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2961
+ }>;
2962
+ }>;
2963
+ }>;
2964
+ }>;
2965
+ }>;
2966
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
2967
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
2968
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2969
+ }>;
2970
+ }>;
2971
+ }>> & Record<"multistepForm", import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
2972
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
2973
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
2974
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
2975
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2976
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2977
+ }>;
2978
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
2979
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2980
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2981
+ }>;
2982
+ }>;
2983
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
2984
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
2985
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2986
+ }>;
2987
+ }>;
2988
+ }>;
2989
+ }>;
2990
+ }>;
2991
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
2992
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
2993
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
2994
+ }>;
2995
+ }>;
2996
+ }>>>;
2997
+ export declare const requiredRatio_visibleFieldsCount: import("@protontech/autofill/types").Feature<"requiredRatio,visibleFieldsCountScaled", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
2998
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
2999
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3000
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3001
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3002
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3003
+ }>;
3004
+ }>;
3005
+ }>;
3006
+ }>;
3007
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3008
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3009
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3010
+ }>;
3011
+ }>;
3012
+ }>> & Record<"visibleFieldsCountScaled", import("@protontech/autofill/types").Feature<"visibleFieldsCountScaled", number, Record<"visibleFieldsCount", import("@protontech/autofill/types").Feature<"visibleFieldsCount", number, {
3013
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3014
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3015
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3016
+ }>;
3017
+ }>;
3018
+ }>>>>>;
3019
+ export declare const requiredRatio_visibleIdentifiersCount: import("@protontech/autofill/types").Feature<"requiredRatio,visibleIdentifiersCountScaled", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3020
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3021
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3022
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3023
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3024
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3025
+ }>;
3026
+ }>;
3027
+ }>;
3028
+ }>;
3029
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3030
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3031
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3032
+ }>;
3033
+ }>;
3034
+ }>> & Record<"visibleIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"visibleIdentifiersCountScaled", number, Record<"visibleIdentifiersCount", import("@protontech/autofill/types").Feature<"visibleIdentifiersCount", number, {
3035
+ [x: string]: import("@protontech/autofill/types").Feature<"visibleIdentifiers", HTMLElement[], {
3036
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
3037
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
3038
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
3039
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3040
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3041
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3042
+ }>;
3043
+ }>;
3044
+ }>;
3045
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
3046
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3047
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3048
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3049
+ }>;
3050
+ }>;
3051
+ }>;
3052
+ }>;
3053
+ }>;
3054
+ }>;
3055
+ }>>>>>;
3056
+ export declare const requiredRatio_visiblePasswordsCount: import("@protontech/autofill/types").Feature<"requiredRatio,visiblePasswordsCountScaled", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3057
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3058
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3059
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3060
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3061
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3062
+ }>;
3063
+ }>;
3064
+ }>;
3065
+ }>;
3066
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3067
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3068
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3069
+ }>;
3070
+ }>;
3071
+ }>> & Record<"visiblePasswordsCountScaled", import("@protontech/autofill/types").Feature<"visiblePasswordsCountScaled", number, Record<"visiblePasswordsCount", import("@protontech/autofill/types").Feature<"visiblePasswordsCount", number, {
3072
+ [x: string]: import("@protontech/autofill/types").Feature<"visiblePasswords", HTMLElement[], {
3073
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
3074
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
3075
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3076
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3077
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3078
+ }>;
3079
+ }>;
3080
+ }>;
3081
+ }>;
3082
+ }>;
3083
+ }>>>>>;
3084
+ export declare const requiredRatio_hiddenIdentifiersCount: import("@protontech/autofill/types").Feature<"requiredRatio,hiddenIdentifiersCountScaled", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3085
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3086
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3087
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3088
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3089
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3090
+ }>;
3091
+ }>;
3092
+ }>;
3093
+ }>;
3094
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3095
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3096
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3097
+ }>;
3098
+ }>;
3099
+ }>> & Record<"hiddenIdentifiersCountScaled", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCountScaled", number, Record<"hiddenIdentifiersCount", import("@protontech/autofill/types").Feature<"hiddenIdentifiersCount", number, {
3100
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenIdentifiers", HTMLElement[], {
3101
+ identifiersByVisibility: import("@protontech/autofill/types").Feature<"identifiersByVisibility", [HTMLElement[], HTMLElement[]], {
3102
+ identifiers: import("@protontech/autofill/types").Feature<"identifiers", HTMLElement[], {
3103
+ usernames: import("@protontech/autofill/types").Feature<"usernames", HTMLInputElement[], {
3104
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3105
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3106
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3107
+ }>;
3108
+ }>;
3109
+ }>;
3110
+ emails: import("@protontech/autofill/types").Feature<"emails", HTMLInputElement[], {
3111
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3112
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3113
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3114
+ }>;
3115
+ }>;
3116
+ }>;
3117
+ }>;
3118
+ }>;
3119
+ }>;
3120
+ }>>>>>;
3121
+ export declare const requiredRatio_hiddenPasswordsCount: import("@protontech/autofill/types").Feature<"requiredRatio,hiddenPasswordsCountScaled", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3122
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3123
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3124
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3125
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3126
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3127
+ }>;
3128
+ }>;
3129
+ }>;
3130
+ }>;
3131
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3132
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3133
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3134
+ }>;
3135
+ }>;
3136
+ }>> & Record<"hiddenPasswordsCountScaled", import("@protontech/autofill/types").Feature<"hiddenPasswordsCountScaled", number, Record<"hiddenPasswordsCount", import("@protontech/autofill/types").Feature<"hiddenPasswordsCount", number, {
3137
+ [x: string]: import("@protontech/autofill/types").Feature<"hiddenPasswords", HTMLElement[], {
3138
+ passwordsByVisibility: import("@protontech/autofill/types").Feature<"passwordsByVisibility", [HTMLElement[], HTMLElement[]], {
3139
+ passwords: import("@protontech/autofill/types").Feature<"passwords", HTMLInputElement[], {
3140
+ inputs: import("@protontech/autofill/types").Feature<"inputs", HTMLInputElement[], {
3141
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3142
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3143
+ }>;
3144
+ }>;
3145
+ }>;
3146
+ }>;
3147
+ }>;
3148
+ }>>>>>;
3149
+ export declare const requiredRatio_multiAuthForm: import("@protontech/autofill/types").Feature<"requiredRatio,multiAuthForm", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3150
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3151
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3152
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3153
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3154
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3155
+ }>;
3156
+ }>;
3157
+ }>;
3158
+ }>;
3159
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3160
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3161
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3162
+ }>;
3163
+ }>;
3164
+ }>> & Record<"multiAuthForm", import("@protontech/autofill/types").Feature<"multiAuthForm", boolean, {
3165
+ pageMultiAuth: import("@protontech/autofill/types").Feature<"pageMultiAuth", boolean, {
3166
+ pageLogin: import("@protontech/autofill/types").Feature<"pageLogin", boolean, {
3167
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
3168
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
3169
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3170
+ }>;
3171
+ }>;
3172
+ }>;
3173
+ pageRegister: import("@protontech/autofill/types").Feature<"pageRegister", boolean, {
3174
+ pageDescriptionText: import("@protontech/autofill/types").Feature<"pageDescriptionText", string, {
3175
+ doc: import("@protontech/autofill/types").Feature<"doc", Document, {
3176
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3177
+ }>;
3178
+ }>;
3179
+ }>;
3180
+ }>;
3181
+ headingsMultiAuth: import("@protontech/autofill/types").Feature<"headingsMultiAuth", boolean, {
3182
+ headingsLogin: import("@protontech/autofill/types").Feature<"headingsLogin", boolean, {
3183
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
3184
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3185
+ }>;
3186
+ }>;
3187
+ headingsRegister: import("@protontech/autofill/types").Feature<"headingsRegister", boolean, {
3188
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
3189
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3190
+ }>;
3191
+ }>;
3192
+ }>;
3193
+ submitMultiAuth: import("@protontech/autofill/types").Feature<"submitMultiAuth", boolean, {
3194
+ submitRegister: import("@protontech/autofill/types").Feature<"submitRegister", boolean, {
3195
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
3196
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
3197
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3198
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3199
+ }>;
3200
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
3201
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3202
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3203
+ }>;
3204
+ }>;
3205
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
3206
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3207
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3208
+ }>;
3209
+ }>;
3210
+ }>;
3211
+ }>;
3212
+ }>;
3213
+ submitLogin: import("@protontech/autofill/types").Feature<"submitLogin", boolean, {
3214
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
3215
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
3216
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3217
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3218
+ }>;
3219
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
3220
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3221
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3222
+ }>;
3223
+ }>;
3224
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
3225
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3226
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3227
+ }>;
3228
+ }>;
3229
+ }>;
3230
+ }>;
3231
+ }>;
3232
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
3233
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
3234
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
3235
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3236
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3237
+ }>;
3238
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
3239
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3240
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3241
+ }>;
3242
+ }>;
3243
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
3244
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3245
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3246
+ }>;
3247
+ }>;
3248
+ }>;
3249
+ }>;
3250
+ }>;
3251
+ }>;
3252
+ }>>>;
3253
+ export declare const requiredRatio_multistepForm: import("@protontech/autofill/types").Feature<"requiredRatio,multistepForm", number, Record<"requiredRatio", import("@protontech/autofill/types").Feature<"requiredRatio", number, {
3254
+ required: import("@protontech/autofill/types").Feature<"required", HTMLInputElement[], {
3255
+ visibleInputs: import("@protontech/autofill/types").Feature<"visibleInputs", HTMLInputElement[], {
3256
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3257
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3258
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3259
+ }>;
3260
+ }>;
3261
+ }>;
3262
+ }>;
3263
+ visibleFields: import("@protontech/autofill/types").Feature<"visibleFields", HTMLFieldElement[], {
3264
+ fields: import("@protontech/autofill/types").Feature<"fields", HTMLFieldElement[], {
3265
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3266
+ }>;
3267
+ }>;
3268
+ }>> & Record<"multistepForm", import("@protontech/autofill/types").Feature<"multistepForm", boolean, {
3269
+ buttonMultistep: import("@protontech/autofill/types").Feature<"buttonMultistep", boolean, {
3270
+ submitBtnHaystack: import("@protontech/autofill/types").Feature<"submitBtnHaystack", string[], {
3271
+ submitBtns: import("@protontech/autofill/types").Feature<"submitBtns", HTMLElement[], {
3272
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3273
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3274
+ }>;
3275
+ btnsTypeSubmit: import("@protontech/autofill/types").Feature<"btnsTypeSubmit", HTMLElement[], {
3276
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3277
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3278
+ }>;
3279
+ }>;
3280
+ candidateBtns: import("@protontech/autofill/types").Feature<"candidateBtns", HTMLElement[], {
3281
+ btns: import("@protontech/autofill/types").Feature<"btns", HTMLElement[], {
3282
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3283
+ }>;
3284
+ }>;
3285
+ }>;
3286
+ }>;
3287
+ }>;
3288
+ headingsMultistep: import("@protontech/autofill/types").Feature<"headingsMultistep", boolean, {
3289
+ nearestHeadingsText: import("@protontech/autofill/types").Feature<"nearestHeadingsText", string, {
3290
+ form: import("@protontech/autofill/types").Feature<"form", HTMLElement, {}>;
3291
+ }>;
3292
+ }>;
3293
+ }>>>;
2
3294
  export declare const formFeatures: {
3
- __formInputMFACandidates: {
4
- name: "__formInputMFACandidates";
3295
+ formInputMFACandidates: {
3296
+ name: "formInputMFACandidates";
5
3297
  parents: import("@protontech/autofill/types").AbstractFeatures;
6
3298
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3299
+ private?: true;
7
3300
  };
8
- __formMFA: {
9
- name: "__formMFA";
3301
+ formMFA: {
3302
+ name: "formMFA";
10
3303
  parents: import("@protontech/autofill/types").AbstractFeatures;
11
3304
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3305
+ private?: true;
12
3306
  };
13
- __formOTPOutlier: {
14
- name: "__formOTPOutlier";
3307
+ formOTPOutlier: {
3308
+ name: "formOTPOutlier";
15
3309
  parents: import("@protontech/autofill/types").AbstractFeatures;
16
3310
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3311
+ private?: true;
17
3312
  };
18
- __formTextAuthenticator: {
19
- name: "__formTextAuthenticator";
3313
+ formTextAuthenticator: {
3314
+ name: "formTextAuthenticator";
20
3315
  parents: import("@protontech/autofill/types").AbstractFeatures;
21
3316
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3317
+ private?: true;
22
3318
  };
23
- __headingsOTPOutlier: {
24
- name: "__headingsOTPOutlier";
3319
+ headingsOTPOutlier: {
3320
+ name: "headingsOTPOutlier";
25
3321
  parents: import("@protontech/autofill/types").AbstractFeatures;
26
3322
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3323
+ private?: true;
27
3324
  };
28
- __inputIterator: {
29
- name: "__inputIterator";
3325
+ inputIterator: {
3326
+ name: "inputIterator";
30
3327
  parents: import("@protontech/autofill/types").AbstractFeatures;
31
3328
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/autofill/utils/form").FormInputIterator;
3329
+ private?: true;
32
3330
  };
33
- __linkOTPOutlier: {
34
- name: "__linkOTPOutlier";
3331
+ linkOTPOutlier: {
3332
+ name: "linkOTPOutlier";
35
3333
  parents: import("@protontech/autofill/types").AbstractFeatures;
36
3334
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3335
+ private?: true;
37
3336
  };
38
3337
  visibleFieldsCount: {
39
3338
  name: "visibleFieldsCountScaled";
40
3339
  parents: import("@protontech/autofill/types").AbstractFeatures;
41
3340
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3341
+ private?: true;
42
3342
  };
43
3343
  visibleInputsCount: {
44
3344
  name: "visibleInputsCountScaled";
45
3345
  parents: import("@protontech/autofill/types").AbstractFeatures;
46
3346
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3347
+ private?: true;
47
3348
  };
48
3349
  fieldsetsCount: {
49
3350
  name: "fieldsetsCountScaled";
50
3351
  parents: import("@protontech/autofill/types").AbstractFeatures;
51
3352
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3353
+ private?: true;
52
3354
  };
53
3355
  textsCount: {
54
3356
  name: "textsCountScaled";
55
3357
  parents: import("@protontech/autofill/types").AbstractFeatures;
56
3358
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3359
+ private?: true;
57
3360
  };
58
3361
  textareasCount: {
59
3362
  name: "textareasCountScaled";
60
3363
  parents: import("@protontech/autofill/types").AbstractFeatures;
61
3364
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3365
+ private?: true;
62
3366
  };
63
3367
  selectsCount: {
64
3368
  name: "selectsCountScaled";
65
3369
  parents: import("@protontech/autofill/types").AbstractFeatures;
66
3370
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3371
+ private?: true;
67
3372
  };
68
3373
  disabledCount: {
69
3374
  name: "disabledCountScaled";
70
3375
  parents: import("@protontech/autofill/types").AbstractFeatures;
71
3376
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3377
+ private?: true;
72
3378
  };
73
3379
  radiosCount: {
74
3380
  name: "radiosCountScaled";
75
3381
  parents: import("@protontech/autofill/types").AbstractFeatures;
76
3382
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3383
+ private?: true;
77
3384
  };
78
3385
  readOnlyCount: {
79
3386
  name: "readOnlyCountScaled";
80
3387
  parents: import("@protontech/autofill/types").AbstractFeatures;
81
3388
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3389
+ private?: true;
82
3390
  };
83
3391
  formComplexity: {
84
3392
  name: "formComplexityScaled";
85
3393
  parents: import("@protontech/autofill/types").AbstractFeatures;
86
3394
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3395
+ private?: true;
87
3396
  };
88
3397
  visibleIdentifiersCount: {
89
3398
  name: "visibleIdentifiersCountScaled";
90
3399
  parents: import("@protontech/autofill/types").AbstractFeatures;
91
3400
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3401
+ private?: true;
92
3402
  };
93
3403
  hiddenIdentifiersCount: {
94
3404
  name: "hiddenIdentifiersCountScaled";
95
3405
  parents: import("@protontech/autofill/types").AbstractFeatures;
96
3406
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3407
+ private?: true;
97
3408
  };
98
3409
  usernamesCount: {
99
3410
  name: "usernamesCountScaled";
100
3411
  parents: import("@protontech/autofill/types").AbstractFeatures;
101
3412
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3413
+ private?: true;
102
3414
  };
103
3415
  emailsCount: {
104
3416
  name: "emailsCountScaled";
105
3417
  parents: import("@protontech/autofill/types").AbstractFeatures;
106
3418
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3419
+ private?: true;
107
3420
  };
108
3421
  hiddenCount: {
109
3422
  name: "hiddenCountScaled";
110
3423
  parents: import("@protontech/autofill/types").AbstractFeatures;
111
3424
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3425
+ private?: true;
112
3426
  };
113
3427
  hiddenPasswordsCount: {
114
3428
  name: "hiddenPasswordsCountScaled";
115
3429
  parents: import("@protontech/autofill/types").AbstractFeatures;
116
3430
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3431
+ private?: true;
117
3432
  };
118
3433
  submitsCount: {
119
3434
  name: "submitsCountScaled";
120
3435
  parents: import("@protontech/autofill/types").AbstractFeatures;
121
3436
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3437
+ private?: true;
122
3438
  };
123
3439
  identitiesCount: {
124
3440
  name: "identitiesCountScaled";
125
3441
  parents: import("@protontech/autofill/types").AbstractFeatures;
126
3442
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3443
+ private?: true;
127
3444
  };
128
3445
  ccsCount: {
129
3446
  name: "ccsCountScaled";
130
3447
  parents: import("@protontech/autofill/types").AbstractFeatures;
131
3448
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3449
+ private?: true;
132
3450
  };
133
3451
  hasTels: {
134
3452
  name: "hasTels";
135
3453
  parents: import("@protontech/autofill/types").AbstractFeatures;
136
3454
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3455
+ private?: true;
137
3456
  };
138
3457
  hasOAuth: {
139
3458
  name: "hasOAuth";
140
3459
  parents: import("@protontech/autofill/types").AbstractFeatures;
141
3460
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3461
+ private?: true;
142
3462
  };
143
3463
  hasCaptchas: {
144
3464
  name: "hasCaptchas";
145
3465
  parents: import("@protontech/autofill/types").AbstractFeatures;
146
3466
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3467
+ private?: true;
147
3468
  };
148
3469
  hasFiles: {
149
3470
  name: "hasFiles";
150
3471
  parents: import("@protontech/autofill/types").AbstractFeatures;
151
3472
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3473
+ private?: true;
152
3474
  };
153
3475
  hasDate: {
154
3476
  name: "hasDate";
155
3477
  parents: import("@protontech/autofill/types").AbstractFeatures;
156
3478
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3479
+ private?: true;
157
3480
  };
158
3481
  hasNumber: {
159
3482
  name: "hasNumber";
160
3483
  parents: import("@protontech/autofill/types").AbstractFeatures;
161
3484
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3485
+ private?: true;
162
3486
  };
163
3487
  oneVisibleField: {
164
3488
  name: "oneVisibleField";
165
3489
  parents: import("@protontech/autofill/types").AbstractFeatures;
166
3490
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3491
+ private?: true;
167
3492
  };
168
3493
  twoVisibleFields: {
169
3494
  name: "twoVisibleFields";
170
3495
  parents: import("@protontech/autofill/types").AbstractFeatures;
171
3496
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3497
+ private?: true;
172
3498
  };
173
3499
  threeOrMoreVisibleFields: {
174
3500
  name: "threeOrMoreVisibleFields";
175
3501
  parents: import("@protontech/autofill/types").AbstractFeatures;
176
3502
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3503
+ private?: true;
177
3504
  };
178
3505
  noPasswords: {
179
3506
  name: "noPasswords";
180
3507
  parents: import("@protontech/autofill/types").AbstractFeatures;
181
3508
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3509
+ private?: true;
182
3510
  };
183
3511
  onePassword: {
184
3512
  name: "onePassword";
185
3513
  parents: import("@protontech/autofill/types").AbstractFeatures;
186
3514
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3515
+ private?: true;
187
3516
  };
188
3517
  twoPasswords: {
189
3518
  name: "twoPasswords";
190
3519
  parents: import("@protontech/autofill/types").AbstractFeatures;
191
3520
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3521
+ private?: true;
192
3522
  };
193
3523
  threeOrMorePasswords: {
194
3524
  name: "threeOrMorePasswords";
195
3525
  parents: import("@protontech/autofill/types").AbstractFeatures;
196
3526
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3527
+ private?: true;
197
3528
  };
198
3529
  noIdentifiers: {
199
3530
  name: "noIdentifiers";
200
3531
  parents: import("@protontech/autofill/types").AbstractFeatures;
201
3532
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3533
+ private?: true;
202
3534
  };
203
3535
  oneIdentifier: {
204
3536
  name: "oneIdentifier";
205
3537
  parents: import("@protontech/autofill/types").AbstractFeatures;
206
3538
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3539
+ private?: true;
207
3540
  };
208
3541
  twoIdentifiers: {
209
3542
  name: "twoIdentifiers";
210
3543
  parents: import("@protontech/autofill/types").AbstractFeatures;
211
3544
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3545
+ private?: true;
212
3546
  };
213
3547
  threeOrMoreIdentifiers: {
214
3548
  name: "threeOrMoreIdentifiers";
215
3549
  parents: import("@protontech/autofill/types").AbstractFeatures;
216
3550
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3551
+ private?: true;
217
3552
  };
218
3553
  autofocusedIsIdentifier: {
219
3554
  name: "autofocusedIsIdentifier";
220
3555
  parents: import("@protontech/autofill/types").AbstractFeatures;
221
3556
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3557
+ private?: true;
222
3558
  };
223
3559
  autofocusedIsPassword: {
224
3560
  name: "autofocusedIsPassword";
225
3561
  parents: import("@protontech/autofill/types").AbstractFeatures;
226
3562
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3563
+ private?: true;
227
3564
  };
228
3565
  visibleRatio: {
229
3566
  name: "visibleRatio";
230
3567
  parents: import("@protontech/autofill/types").AbstractFeatures;
231
3568
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3569
+ private?: true;
232
3570
  };
233
3571
  inputRatio: {
234
3572
  name: "inputRatio";
235
3573
  parents: import("@protontech/autofill/types").AbstractFeatures;
236
3574
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3575
+ private?: true;
237
3576
  };
238
3577
  hiddenRatio: {
239
3578
  name: "hiddenRatio";
240
3579
  parents: import("@protontech/autofill/types").AbstractFeatures;
241
3580
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3581
+ private?: true;
242
3582
  };
243
3583
  identifierRatio: {
244
3584
  name: "identifierRatio";
245
3585
  parents: import("@protontech/autofill/types").AbstractFeatures;
246
3586
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3587
+ private?: true;
247
3588
  };
248
3589
  emailRatio: {
249
3590
  name: "emailRatio";
250
3591
  parents: import("@protontech/autofill/types").AbstractFeatures;
251
3592
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3593
+ private?: true;
252
3594
  };
253
3595
  usernameRatio: {
254
3596
  name: "usernameRatio";
255
3597
  parents: import("@protontech/autofill/types").AbstractFeatures;
256
3598
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3599
+ private?: true;
257
3600
  };
258
3601
  passwordRatio: {
259
3602
  name: "passwordRatio";
260
3603
  parents: import("@protontech/autofill/types").AbstractFeatures;
261
3604
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3605
+ private?: true;
262
3606
  };
263
3607
  disabledRatio: {
264
3608
  name: "disabledRatio";
265
3609
  parents: import("@protontech/autofill/types").AbstractFeatures;
266
3610
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3611
+ private?: true;
267
3612
  };
268
3613
  requiredRatio: {
269
3614
  name: "requiredRatio";
270
3615
  parents: import("@protontech/autofill/types").AbstractFeatures;
271
3616
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3617
+ private?: true;
272
3618
  };
273
3619
  checkboxRatio: {
274
3620
  name: "checkboxRatio";
275
3621
  parents: import("@protontech/autofill/types").AbstractFeatures;
276
3622
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3623
+ private?: true;
277
3624
  };
278
3625
  hiddenIdentifierRatio: {
279
3626
  name: "hiddenIdentifierRatio";
280
3627
  parents: import("@protontech/autofill/types").AbstractFeatures;
281
3628
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3629
+ private?: true;
282
3630
  };
283
3631
  hiddenPasswordRatio: {
284
3632
  name: "hiddenPasswordRatio";
285
3633
  parents: import("@protontech/autofill/types").AbstractFeatures;
286
3634
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3635
+ private?: true;
287
3636
  };
288
3637
  pageLogin: {
289
3638
  name: "pageLogin";
290
3639
  parents: import("@protontech/autofill/types").AbstractFeatures;
291
3640
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3641
+ private?: true;
292
3642
  };
293
3643
  formTextLogin: {
294
3644
  name: "formTextLogin";
295
3645
  parents: import("@protontech/autofill/types").AbstractFeatures;
296
3646
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3647
+ private?: true;
297
3648
  };
298
3649
  formAttrsLogin: {
299
3650
  name: "formAttrsLogin";
300
3651
  parents: import("@protontech/autofill/types").AbstractFeatures;
301
3652
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3653
+ private?: true;
302
3654
  };
303
3655
  headingsLogin: {
304
3656
  name: "headingsLogin";
305
3657
  parents: import("@protontech/autofill/types").AbstractFeatures;
306
3658
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3659
+ private?: true;
307
3660
  };
308
3661
  layoutLogin: {
309
3662
  name: "layoutLogin";
310
3663
  parents: import("@protontech/autofill/types").AbstractFeatures;
311
3664
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3665
+ private?: true;
312
3666
  };
313
3667
  rememberMeCheckbox: {
314
3668
  name: "rememberMeCheckbox";
315
3669
  parents: import("@protontech/autofill/types").AbstractFeatures;
316
3670
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3671
+ private?: true;
317
3672
  };
318
3673
  troubleLink: {
319
3674
  name: "troubleLink";
320
3675
  parents: import("@protontech/autofill/types").AbstractFeatures;
321
3676
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3677
+ private?: true;
322
3678
  };
323
3679
  submitLogin: {
324
3680
  name: "submitLogin";
325
3681
  parents: import("@protontech/autofill/types").AbstractFeatures;
326
3682
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3683
+ private?: true;
327
3684
  };
328
3685
  pageRegister: {
329
3686
  name: "pageRegister";
330
3687
  parents: import("@protontech/autofill/types").AbstractFeatures;
331
3688
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3689
+ private?: true;
332
3690
  };
333
3691
  formTextRegister: {
334
3692
  name: "formTextRegister";
335
3693
  parents: import("@protontech/autofill/types").AbstractFeatures;
336
3694
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3695
+ private?: true;
337
3696
  };
338
3697
  formAttrsRegister: {
339
3698
  name: "formAttrsRegister";
340
3699
  parents: import("@protontech/autofill/types").AbstractFeatures;
341
3700
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3701
+ private?: true;
342
3702
  };
343
3703
  headingsRegister: {
344
3704
  name: "headingsRegister";
345
3705
  parents: import("@protontech/autofill/types").AbstractFeatures;
346
3706
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3707
+ private?: true;
347
3708
  };
348
3709
  layoutRegister: {
349
3710
  name: "layoutRegister";
350
3711
  parents: import("@protontech/autofill/types").AbstractFeatures;
351
3712
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3713
+ private?: true;
352
3714
  };
353
3715
  pwNewRegister: {
354
3716
  name: "pwNewRegister";
355
3717
  parents: import("@protontech/autofill/types").AbstractFeatures;
356
3718
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3719
+ private?: true;
357
3720
  };
358
3721
  pwConfirmRegister: {
359
3722
  name: "pwConfirmRegister";
360
3723
  parents: import("@protontech/autofill/types").AbstractFeatures;
361
3724
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3725
+ private?: true;
362
3726
  };
363
3727
  submitRegister: {
364
3728
  name: "submitRegister";
365
3729
  parents: import("@protontech/autofill/types").AbstractFeatures;
366
3730
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3731
+ private?: true;
367
3732
  };
368
3733
  TOSRef: {
369
3734
  name: "TOSRef";
370
3735
  parents: import("@protontech/autofill/types").AbstractFeatures;
371
3736
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3737
+ private?: true;
372
3738
  };
373
3739
  pagePwReset: {
374
3740
  name: "pagePwReset";
375
3741
  parents: import("@protontech/autofill/types").AbstractFeatures;
376
3742
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3743
+ private?: true;
377
3744
  };
378
3745
  formTextPwReset: {
379
3746
  name: "formTextPwReset";
380
3747
  parents: import("@protontech/autofill/types").AbstractFeatures;
381
3748
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3749
+ private?: true;
382
3750
  };
383
3751
  formAttrsPwReset: {
384
3752
  name: "formAttrsPwReset";
385
3753
  parents: import("@protontech/autofill/types").AbstractFeatures;
386
3754
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3755
+ private?: true;
387
3756
  };
388
3757
  headingsPwReset: {
389
3758
  name: "headingsPwReset";
390
3759
  parents: import("@protontech/autofill/types").AbstractFeatures;
391
3760
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3761
+ private?: true;
392
3762
  };
393
3763
  layoutPwReset: {
394
3764
  name: "layoutPwReset";
395
3765
  parents: import("@protontech/autofill/types").AbstractFeatures;
396
3766
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3767
+ private?: true;
397
3768
  };
398
3769
  pageRecovery: {
399
3770
  name: "pageRecovery";
400
3771
  parents: import("@protontech/autofill/types").AbstractFeatures;
401
3772
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3773
+ private?: true;
402
3774
  };
403
3775
  formTextRecovery: {
404
3776
  name: "formTextRecovery";
405
3777
  parents: import("@protontech/autofill/types").AbstractFeatures;
406
3778
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3779
+ private?: true;
407
3780
  };
408
3781
  formAttrsRecovery: {
409
3782
  name: "formAttrsRecovery";
410
3783
  parents: import("@protontech/autofill/types").AbstractFeatures;
411
3784
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3785
+ private?: true;
412
3786
  };
413
3787
  headingsRecovery: {
414
3788
  name: "headingsRecovery";
415
3789
  parents: import("@protontech/autofill/types").AbstractFeatures;
416
3790
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3791
+ private?: true;
417
3792
  };
418
3793
  layoutRecovery: {
419
3794
  name: "layoutRecovery";
420
3795
  parents: import("@protontech/autofill/types").AbstractFeatures;
421
3796
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3797
+ private?: true;
422
3798
  };
423
3799
  identifierRecovery: {
424
3800
  name: "identifierRecovery";
425
3801
  parents: import("@protontech/autofill/types").AbstractFeatures;
426
3802
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3803
+ private?: true;
427
3804
  };
428
3805
  submitRecovery: {
429
3806
  name: "submitRecovery";
430
3807
  parents: import("@protontech/autofill/types").AbstractFeatures;
431
3808
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3809
+ private?: true;
432
3810
  };
433
3811
  formTextMFA: {
434
3812
  name: "formTextMFA";
435
3813
  parents: import("@protontech/autofill/types").AbstractFeatures;
436
3814
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3815
+ private?: true;
437
3816
  };
438
3817
  formAttrsMFA: {
439
3818
  name: "formAttrsMFA";
440
3819
  parents: import("@protontech/autofill/types").AbstractFeatures;
441
3820
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3821
+ private?: true;
442
3822
  };
443
3823
  inputsMFA: {
444
3824
  name: "inputsMFA";
445
3825
  parents: import("@protontech/autofill/types").AbstractFeatures;
446
3826
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3827
+ private?: true;
447
3828
  };
448
3829
  newsletterForm: {
449
3830
  name: "newsletterForm";
450
3831
  parents: import("@protontech/autofill/types").AbstractFeatures;
451
3832
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3833
+ private?: true;
452
3834
  };
453
3835
  searchForm: {
454
3836
  name: "searchForm";
455
3837
  parents: import("@protontech/autofill/types").AbstractFeatures;
456
3838
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3839
+ private?: true;
457
3840
  };
458
3841
  multistepForm: {
459
3842
  name: "multistepForm";
460
3843
  parents: import("@protontech/autofill/types").AbstractFeatures;
461
3844
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3845
+ private?: true;
462
3846
  };
463
3847
  multiAuthForm: {
464
3848
  name: "multiAuthForm";
465
3849
  parents: import("@protontech/autofill/types").AbstractFeatures;
466
3850
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
3851
+ private?: true;
467
3852
  };
468
3853
  multistepForm_multiAuthForm: {
469
3854
  name: "multistepForm,multiAuthForm";
470
3855
  parents: import("@protontech/autofill/types").AbstractFeatures;
471
3856
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3857
+ private?: true;
472
3858
  };
473
3859
  visibleRatio_visibleFieldsCount: {
474
3860
  name: "visibleRatio,visibleFieldsCountScaled";
475
3861
  parents: import("@protontech/autofill/types").AbstractFeatures;
476
3862
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3863
+ private?: true;
477
3864
  };
478
3865
  visibleRatio_visibleIdentifiersCount: {
479
3866
  name: "visibleRatio,visibleIdentifiersCountScaled";
480
3867
  parents: import("@protontech/autofill/types").AbstractFeatures;
481
3868
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3869
+ private?: true;
482
3870
  };
483
3871
  visibleRatio_visiblePasswordsCount: {
484
3872
  name: "visibleRatio,visiblePasswordsCountScaled";
485
3873
  parents: import("@protontech/autofill/types").AbstractFeatures;
486
3874
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3875
+ private?: true;
487
3876
  };
488
3877
  visibleRatio_hiddenIdentifiersCount: {
489
3878
  name: "visibleRatio,hiddenIdentifiersCountScaled";
490
3879
  parents: import("@protontech/autofill/types").AbstractFeatures;
491
3880
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3881
+ private?: true;
492
3882
  };
493
3883
  visibleRatio_hiddenPasswordsCount: {
494
3884
  name: "visibleRatio,hiddenPasswordsCountScaled";
495
3885
  parents: import("@protontech/autofill/types").AbstractFeatures;
496
3886
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3887
+ private?: true;
497
3888
  };
498
3889
  visibleRatio_multiAuthForm: {
499
3890
  name: "visibleRatio,multiAuthForm";
500
3891
  parents: import("@protontech/autofill/types").AbstractFeatures;
501
3892
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3893
+ private?: true;
502
3894
  };
503
3895
  visibleRatio_multistepForm: {
504
3896
  name: "visibleRatio,multistepForm";
505
3897
  parents: import("@protontech/autofill/types").AbstractFeatures;
506
3898
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3899
+ private?: true;
507
3900
  };
508
3901
  identifierRatio_visibleFieldsCount: {
509
3902
  name: "identifierRatio,visibleFieldsCountScaled";
510
3903
  parents: import("@protontech/autofill/types").AbstractFeatures;
511
3904
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3905
+ private?: true;
512
3906
  };
513
3907
  identifierRatio_visibleIdentifiersCount: {
514
3908
  name: "identifierRatio,visibleIdentifiersCountScaled";
515
3909
  parents: import("@protontech/autofill/types").AbstractFeatures;
516
3910
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3911
+ private?: true;
517
3912
  };
518
3913
  identifierRatio_visiblePasswordsCount: {
519
3914
  name: "identifierRatio,visiblePasswordsCountScaled";
520
3915
  parents: import("@protontech/autofill/types").AbstractFeatures;
521
3916
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3917
+ private?: true;
522
3918
  };
523
3919
  identifierRatio_hiddenIdentifiersCount: {
524
3920
  name: "identifierRatio,hiddenIdentifiersCountScaled";
525
3921
  parents: import("@protontech/autofill/types").AbstractFeatures;
526
3922
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3923
+ private?: true;
527
3924
  };
528
3925
  identifierRatio_hiddenPasswordsCount: {
529
3926
  name: "identifierRatio,hiddenPasswordsCountScaled";
530
3927
  parents: import("@protontech/autofill/types").AbstractFeatures;
531
3928
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3929
+ private?: true;
532
3930
  };
533
3931
  identifierRatio_multiAuthForm: {
534
3932
  name: "identifierRatio,multiAuthForm";
535
3933
  parents: import("@protontech/autofill/types").AbstractFeatures;
536
3934
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3935
+ private?: true;
537
3936
  };
538
3937
  identifierRatio_multistepForm: {
539
3938
  name: "identifierRatio,multistepForm";
540
3939
  parents: import("@protontech/autofill/types").AbstractFeatures;
541
3940
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3941
+ private?: true;
542
3942
  };
543
3943
  passwordRatio_visibleFieldsCount: {
544
3944
  name: "passwordRatio,visibleFieldsCountScaled";
545
3945
  parents: import("@protontech/autofill/types").AbstractFeatures;
546
3946
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3947
+ private?: true;
547
3948
  };
548
3949
  passwordRatio_visibleIdentifiersCount: {
549
3950
  name: "passwordRatio,visibleIdentifiersCountScaled";
550
3951
  parents: import("@protontech/autofill/types").AbstractFeatures;
551
3952
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3953
+ private?: true;
552
3954
  };
553
3955
  passwordRatio_visiblePasswordsCount: {
554
3956
  name: "passwordRatio,visiblePasswordsCountScaled";
555
3957
  parents: import("@protontech/autofill/types").AbstractFeatures;
556
3958
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3959
+ private?: true;
557
3960
  };
558
3961
  passwordRatio_hiddenIdentifiersCount: {
559
3962
  name: "passwordRatio,hiddenIdentifiersCountScaled";
560
3963
  parents: import("@protontech/autofill/types").AbstractFeatures;
561
3964
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3965
+ private?: true;
562
3966
  };
563
3967
  passwordRatio_hiddenPasswordsCount: {
564
3968
  name: "passwordRatio,hiddenPasswordsCountScaled";
565
3969
  parents: import("@protontech/autofill/types").AbstractFeatures;
566
3970
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3971
+ private?: true;
567
3972
  };
568
3973
  passwordRatio_multiAuthForm: {
569
3974
  name: "passwordRatio,multiAuthForm";
570
3975
  parents: import("@protontech/autofill/types").AbstractFeatures;
571
3976
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3977
+ private?: true;
572
3978
  };
573
3979
  passwordRatio_multistepForm: {
574
3980
  name: "passwordRatio,multistepForm";
575
3981
  parents: import("@protontech/autofill/types").AbstractFeatures;
576
3982
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3983
+ private?: true;
577
3984
  };
578
3985
  requiredRatio_visibleFieldsCount: {
579
3986
  name: "requiredRatio,visibleFieldsCountScaled";
580
3987
  parents: import("@protontech/autofill/types").AbstractFeatures;
581
3988
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3989
+ private?: true;
582
3990
  };
583
3991
  requiredRatio_visibleIdentifiersCount: {
584
3992
  name: "requiredRatio,visibleIdentifiersCountScaled";
585
3993
  parents: import("@protontech/autofill/types").AbstractFeatures;
586
3994
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
3995
+ private?: true;
587
3996
  };
588
3997
  requiredRatio_visiblePasswordsCount: {
589
3998
  name: "requiredRatio,visiblePasswordsCountScaled";
590
3999
  parents: import("@protontech/autofill/types").AbstractFeatures;
591
4000
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4001
+ private?: true;
592
4002
  };
593
4003
  requiredRatio_hiddenIdentifiersCount: {
594
4004
  name: "requiredRatio,hiddenIdentifiersCountScaled";
595
4005
  parents: import("@protontech/autofill/types").AbstractFeatures;
596
4006
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4007
+ private?: true;
597
4008
  };
598
4009
  requiredRatio_hiddenPasswordsCount: {
599
4010
  name: "requiredRatio,hiddenPasswordsCountScaled";
600
4011
  parents: import("@protontech/autofill/types").AbstractFeatures;
601
4012
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4013
+ private?: true;
602
4014
  };
603
4015
  requiredRatio_multiAuthForm: {
604
4016
  name: "requiredRatio,multiAuthForm";
605
4017
  parents: import("@protontech/autofill/types").AbstractFeatures;
606
4018
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4019
+ private?: true;
607
4020
  };
608
4021
  requiredRatio_multistepForm: {
609
4022
  name: "requiredRatio,multistepForm";
610
4023
  parents: import("@protontech/autofill/types").AbstractFeatures;
611
4024
  compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
4025
+ private?: true;
612
4026
  };
613
4027
  };
614
4028
  export type FormFeatures = ComputedFeatures<typeof formFeatures>;