@protontech/autofill 0.0.22991789 → 0.0.33690782

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 (190) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +17 -0
  16. package/features/feature.js +72 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4427 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +5 -2
  38. package/index.js +10 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +27 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/prod_20240829/index.d.ts +2 -0
  52. package/models/prod_20240829/index.js +27 -0
  53. package/models/prod_20240829/params/email-model.json +45 -0
  54. package/models/prod_20240829/params/login-model.json +421 -0
  55. package/models/prod_20240829/params/new-password-model.json +125 -0
  56. package/models/prod_20240829/params/otp-model.json +153 -0
  57. package/models/prod_20240829/params/password-change-model.json +421 -0
  58. package/models/prod_20240829/params/password-model.json +125 -0
  59. package/models/prod_20240829/params/recovery-model.json +421 -0
  60. package/models/prod_20240829/params/register-model.json +421 -0
  61. package/models/prod_20240829/params/username-hidden-model.json +41 -0
  62. package/models/prod_20240829/params/username-model.json +45 -0
  63. package/models/random_forest/index.d.ts +2 -0
  64. package/models/random_forest/index.js +27 -0
  65. package/models/random_forest/params/email-model.json +1456 -0
  66. package/models/random_forest/params/login-model.json +4194 -0
  67. package/models/random_forest/params/new-password-model.json +1448 -0
  68. package/models/random_forest/params/otp-model.json +2004 -0
  69. package/models/random_forest/params/password-change-model.json +1422 -0
  70. package/models/random_forest/params/password-model.json +1292 -0
  71. package/models/random_forest/params/recovery-model.json +2754 -0
  72. package/models/random_forest/params/register-model.json +3678 -0
  73. package/models/random_forest/params/username-hidden-model.json +1108 -0
  74. package/models/random_forest/params/username-model.json +1052 -0
  75. package/models/v1/index.d.ts +2 -0
  76. package/models/v1/index.js +35 -0
  77. package/package.json +14 -15
  78. package/rules/v1/index.d.ts +3 -0
  79. package/rules/v1/index.js +69 -0
  80. package/rulesets.d.ts +2 -2
  81. package/rulesets.js +11 -10
  82. package/types/index.d.ts +72 -17
  83. package/types/index.js +35 -2
  84. package/utils/attributes.js +1 -1
  85. package/utils/clustering.js +18 -5
  86. package/utils/credit-card.d.ts +32 -0
  87. package/utils/credit-card.js +259 -0
  88. package/utils/credit-card.samples.spec.d.ts +1 -0
  89. package/utils/credit-card.samples.spec.js +452 -0
  90. package/utils/credit-card.spec.d.ts +1 -0
  91. package/utils/credit-card.spec.js +296 -0
  92. package/utils/dom.d.ts +3 -2
  93. package/utils/dom.js +12 -7
  94. package/utils/exclusion.d.ts +1 -0
  95. package/utils/exclusion.js +22 -10
  96. package/utils/extract.d.ts +1 -0
  97. package/utils/extract.js +26 -7
  98. package/utils/fathom.d.ts +10 -23
  99. package/utils/fathom.js +7 -12
  100. package/utils/field.d.ts +12 -4
  101. package/utils/field.js +25 -14
  102. package/utils/flags.d.ts +9 -3
  103. package/utils/flags.js +27 -9
  104. package/utils/form.d.ts +16 -5
  105. package/utils/form.js +35 -14
  106. package/utils/identity.d.ts +12 -21
  107. package/utils/identity.js +66 -41
  108. package/utils/identity.samples.spec.d.ts +1 -0
  109. package/utils/identity.samples.spec.js +28 -0
  110. package/utils/iframe.d.ts +2 -0
  111. package/utils/iframe.js +22 -0
  112. package/utils/overrides.d.ts +19 -0
  113. package/utils/overrides.js +40 -0
  114. package/utils/prepass.js +6 -4
  115. package/utils/re.d.ts +19 -4
  116. package/utils/re.js +22 -7
  117. package/utils/re.spec.d.ts +1 -0
  118. package/utils/re.spec.js +62 -0
  119. package/utils/shadow-dom.d.ts +8 -0
  120. package/utils/shadow-dom.js +53 -0
  121. package/utils/shadow-dom.spec.d.ts +1 -0
  122. package/utils/shadow-dom.spec.js +215 -0
  123. package/utils/visible.d.ts +3 -2
  124. package/utils/visible.js +42 -22
  125. package/cli.d.ts +0 -2
  126. package/cli.js +0 -128
  127. package/features/abstract.field.d.ts +0 -123
  128. package/features/abstract.field.js +0 -63
  129. package/features/abstract.form.d.ts +0 -98
  130. package/features/abstract.form.js +0 -281
  131. package/features/field.email.d.ts +0 -18
  132. package/features/field.email.js +0 -43
  133. package/features/field.otp.d.ts +0 -36
  134. package/features/field.otp.js +0 -116
  135. package/features/field.password.d.ts +0 -35
  136. package/features/field.password.js +0 -104
  137. package/features/field.username-hidden.d.ts +0 -15
  138. package/features/field.username-hidden.js +0 -40
  139. package/features/field.username.d.ts +0 -16
  140. package/features/field.username.js +0 -41
  141. package/features/form.combined.d.ts +0 -1
  142. package/features/form.combined.js +0 -6
  143. package/trainees/field.email.d.ts +0 -2
  144. package/trainees/field.email.js +0 -16
  145. package/trainees/field.identity.d.ts +0 -2
  146. package/trainees/field.identity.js +0 -9
  147. package/trainees/field.otp.d.ts +0 -2
  148. package/trainees/field.otp.js +0 -16
  149. package/trainees/field.password.current.d.ts +0 -2
  150. package/trainees/field.password.current.js +0 -16
  151. package/trainees/field.password.new.d.ts +0 -2
  152. package/trainees/field.password.new.js +0 -16
  153. package/trainees/field.username-hidden.d.ts +0 -2
  154. package/trainees/field.username-hidden.js +0 -22
  155. package/trainees/field.username.d.ts +0 -2
  156. package/trainees/field.username.js +0 -16
  157. package/trainees/form.login.d.ts +0 -2
  158. package/trainees/form.login.js +0 -16
  159. package/trainees/form.noop.d.ts +0 -1
  160. package/trainees/form.noop.js +0 -7
  161. package/trainees/form.password-change.d.ts +0 -2
  162. package/trainees/form.password-change.js +0 -16
  163. package/trainees/form.recovery.d.ts +0 -2
  164. package/trainees/form.recovery.js +0 -16
  165. package/trainees/form.register.d.ts +0 -2
  166. package/trainees/form.register.js +0 -16
  167. package/trainees/index.d.ts +0 -9
  168. package/trainees/index.js +0 -72
  169. package/trainees/results/result.email.d.ts +0 -2
  170. package/trainees/results/result.email.js +0 -17
  171. package/trainees/results/result.login.d.ts +0 -2
  172. package/trainees/results/result.login.js +0 -110
  173. package/trainees/results/result.new-password.d.ts +0 -2
  174. package/trainees/results/result.new-password.js +0 -36
  175. package/trainees/results/result.otp.d.ts +0 -2
  176. package/trainees/results/result.otp.js +0 -43
  177. package/trainees/results/result.password-change.d.ts +0 -2
  178. package/trainees/results/result.password-change.js +0 -110
  179. package/trainees/results/result.password.d.ts +0 -2
  180. package/trainees/results/result.password.js +0 -36
  181. package/trainees/results/result.recovery.d.ts +0 -2
  182. package/trainees/results/result.recovery.js +0 -110
  183. package/trainees/results/result.register.d.ts +0 -2
  184. package/trainees/results/result.register.js +0 -110
  185. package/trainees/results/result.username-hidden.d.ts +0 -2
  186. package/trainees/results/result.username-hidden.js +0 -15
  187. package/trainees/results/result.username.d.ts +0 -2
  188. package/trainees/results/result.username.js +0 -16
  189. package/utils/memoize.d.ts +0 -5
  190. package/utils/memoize.js +0 -12
@@ -0,0 +1,1226 @@
1
+ import type { ComputedFeatures } from "@protontech/autofill/types";
2
+ export declare const formFeatures: {
3
+ __formInputMFACandidates: {
4
+ name: "__formInputMFACandidates";
5
+ parents: import("@protontech/autofill/types").AbstractFeatures;
6
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
7
+ };
8
+ __formMFA: {
9
+ name: "__formMFA";
10
+ parents: import("@protontech/autofill/types").AbstractFeatures;
11
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
12
+ };
13
+ __formOTPOutlier: {
14
+ name: "__formOTPOutlier";
15
+ parents: import("@protontech/autofill/types").AbstractFeatures;
16
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
17
+ };
18
+ __formTextAuthenticator: {
19
+ name: "__formTextAuthenticator";
20
+ parents: import("@protontech/autofill/types").AbstractFeatures;
21
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
22
+ };
23
+ __headingsOTPOutlier: {
24
+ name: "__headingsOTPOutlier";
25
+ parents: import("@protontech/autofill/types").AbstractFeatures;
26
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
27
+ };
28
+ __inputIterator: {
29
+ name: "__inputIterator";
30
+ parents: import("@protontech/autofill/types").AbstractFeatures;
31
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/autofill/utils/form").FormInputIterator;
32
+ };
33
+ __linkOTPOutlier: {
34
+ name: "__linkOTPOutlier";
35
+ parents: import("@protontech/autofill/types").AbstractFeatures;
36
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
37
+ };
38
+ visibleFieldsCount: {
39
+ name: "visibleFieldsCountScaled";
40
+ parents: import("@protontech/autofill/types").AbstractFeatures;
41
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
42
+ };
43
+ visibleInputsCount: {
44
+ name: "visibleInputsCountScaled";
45
+ parents: import("@protontech/autofill/types").AbstractFeatures;
46
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
47
+ };
48
+ fieldsetsCount: {
49
+ name: "fieldsetsCountScaled";
50
+ parents: import("@protontech/autofill/types").AbstractFeatures;
51
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
52
+ };
53
+ textsCount: {
54
+ name: "textsCountScaled";
55
+ parents: import("@protontech/autofill/types").AbstractFeatures;
56
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
57
+ };
58
+ textareasCount: {
59
+ name: "textareasCountScaled";
60
+ parents: import("@protontech/autofill/types").AbstractFeatures;
61
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
62
+ };
63
+ selectsCount: {
64
+ name: "selectsCountScaled";
65
+ parents: import("@protontech/autofill/types").AbstractFeatures;
66
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
67
+ };
68
+ disabledCount: {
69
+ name: "disabledCountScaled";
70
+ parents: import("@protontech/autofill/types").AbstractFeatures;
71
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
72
+ };
73
+ radiosCount: {
74
+ name: "radiosCountScaled";
75
+ parents: import("@protontech/autofill/types").AbstractFeatures;
76
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
77
+ };
78
+ readOnlyCount: {
79
+ name: "readOnlyCountScaled";
80
+ parents: import("@protontech/autofill/types").AbstractFeatures;
81
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
82
+ };
83
+ formComplexity: {
84
+ name: "formComplexityScaled";
85
+ parents: import("@protontech/autofill/types").AbstractFeatures;
86
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
87
+ };
88
+ visibleIdentifiersCount: {
89
+ name: "visibleIdentifiersCountScaled";
90
+ parents: import("@protontech/autofill/types").AbstractFeatures;
91
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
92
+ };
93
+ hiddenIdentifiersCount: {
94
+ name: "hiddenIdentifiersCountScaled";
95
+ parents: import("@protontech/autofill/types").AbstractFeatures;
96
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
97
+ };
98
+ usernamesCount: {
99
+ name: "usernamesCountScaled";
100
+ parents: import("@protontech/autofill/types").AbstractFeatures;
101
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
102
+ };
103
+ emailsCount: {
104
+ name: "emailsCountScaled";
105
+ parents: import("@protontech/autofill/types").AbstractFeatures;
106
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
107
+ };
108
+ hiddenCount: {
109
+ name: "hiddenCountScaled";
110
+ parents: import("@protontech/autofill/types").AbstractFeatures;
111
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
112
+ };
113
+ hiddenPasswordsCount: {
114
+ name: "hiddenPasswordsCountScaled";
115
+ parents: import("@protontech/autofill/types").AbstractFeatures;
116
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
117
+ };
118
+ submitsCount: {
119
+ name: "submitsCountScaled";
120
+ parents: import("@protontech/autofill/types").AbstractFeatures;
121
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
122
+ };
123
+ identitiesCount: {
124
+ name: "identitiesCountScaled";
125
+ parents: import("@protontech/autofill/types").AbstractFeatures;
126
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
127
+ };
128
+ ccsCount: {
129
+ name: "ccsCountScaled";
130
+ parents: import("@protontech/autofill/types").AbstractFeatures;
131
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
132
+ };
133
+ hasTels: {
134
+ name: "hasTels";
135
+ parents: import("@protontech/autofill/types").AbstractFeatures;
136
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
137
+ };
138
+ hasOAuth: {
139
+ name: "hasOAuth";
140
+ parents: import("@protontech/autofill/types").AbstractFeatures;
141
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
142
+ };
143
+ hasCaptchas: {
144
+ name: "hasCaptchas";
145
+ parents: import("@protontech/autofill/types").AbstractFeatures;
146
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
147
+ };
148
+ hasFiles: {
149
+ name: "hasFiles";
150
+ parents: import("@protontech/autofill/types").AbstractFeatures;
151
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
152
+ };
153
+ hasDate: {
154
+ name: "hasDate";
155
+ parents: import("@protontech/autofill/types").AbstractFeatures;
156
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
157
+ };
158
+ hasNumber: {
159
+ name: "hasNumber";
160
+ parents: import("@protontech/autofill/types").AbstractFeatures;
161
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
162
+ };
163
+ oneVisibleField: {
164
+ name: "oneVisibleField";
165
+ parents: import("@protontech/autofill/types").AbstractFeatures;
166
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
167
+ };
168
+ twoVisibleFields: {
169
+ name: "twoVisibleFields";
170
+ parents: import("@protontech/autofill/types").AbstractFeatures;
171
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
172
+ };
173
+ threeOrMoreVisibleFields: {
174
+ name: "threeOrMoreVisibleFields";
175
+ parents: import("@protontech/autofill/types").AbstractFeatures;
176
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
177
+ };
178
+ noPasswords: {
179
+ name: "noPasswords";
180
+ parents: import("@protontech/autofill/types").AbstractFeatures;
181
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
182
+ };
183
+ onePassword: {
184
+ name: "onePassword";
185
+ parents: import("@protontech/autofill/types").AbstractFeatures;
186
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
187
+ };
188
+ twoPasswords: {
189
+ name: "twoPasswords";
190
+ parents: import("@protontech/autofill/types").AbstractFeatures;
191
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
192
+ };
193
+ threeOrMorePasswords: {
194
+ name: "threeOrMorePasswords";
195
+ parents: import("@protontech/autofill/types").AbstractFeatures;
196
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
197
+ };
198
+ noIdentifiers: {
199
+ name: "noIdentifiers";
200
+ parents: import("@protontech/autofill/types").AbstractFeatures;
201
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
202
+ };
203
+ oneIdentifier: {
204
+ name: "oneIdentifier";
205
+ parents: import("@protontech/autofill/types").AbstractFeatures;
206
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
207
+ };
208
+ twoIdentifiers: {
209
+ name: "twoIdentifiers";
210
+ parents: import("@protontech/autofill/types").AbstractFeatures;
211
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
212
+ };
213
+ threeOrMoreIdentifiers: {
214
+ name: "threeOrMoreIdentifiers";
215
+ parents: import("@protontech/autofill/types").AbstractFeatures;
216
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
217
+ };
218
+ autofocusedIsIdentifier: {
219
+ name: "autofocusedIsIdentifier";
220
+ parents: import("@protontech/autofill/types").AbstractFeatures;
221
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
222
+ };
223
+ autofocusedIsPassword: {
224
+ name: "autofocusedIsPassword";
225
+ parents: import("@protontech/autofill/types").AbstractFeatures;
226
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
227
+ };
228
+ visibleRatio: {
229
+ name: "visibleRatio";
230
+ parents: import("@protontech/autofill/types").AbstractFeatures;
231
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
232
+ };
233
+ inputRatio: {
234
+ name: "inputRatio";
235
+ parents: import("@protontech/autofill/types").AbstractFeatures;
236
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
237
+ };
238
+ hiddenRatio: {
239
+ name: "hiddenRatio";
240
+ parents: import("@protontech/autofill/types").AbstractFeatures;
241
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
242
+ };
243
+ identifierRatio: {
244
+ name: "identifierRatio";
245
+ parents: import("@protontech/autofill/types").AbstractFeatures;
246
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
247
+ };
248
+ emailRatio: {
249
+ name: "emailRatio";
250
+ parents: import("@protontech/autofill/types").AbstractFeatures;
251
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
252
+ };
253
+ usernameRatio: {
254
+ name: "usernameRatio";
255
+ parents: import("@protontech/autofill/types").AbstractFeatures;
256
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
257
+ };
258
+ passwordRatio: {
259
+ name: "passwordRatio";
260
+ parents: import("@protontech/autofill/types").AbstractFeatures;
261
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
262
+ };
263
+ disabledRatio: {
264
+ name: "disabledRatio";
265
+ parents: import("@protontech/autofill/types").AbstractFeatures;
266
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
267
+ };
268
+ requiredRatio: {
269
+ name: "requiredRatio";
270
+ parents: import("@protontech/autofill/types").AbstractFeatures;
271
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
272
+ };
273
+ checkboxRatio: {
274
+ name: "checkboxRatio";
275
+ parents: import("@protontech/autofill/types").AbstractFeatures;
276
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
277
+ };
278
+ hiddenIdentifierRatio: {
279
+ name: "hiddenIdentifierRatio";
280
+ parents: import("@protontech/autofill/types").AbstractFeatures;
281
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
282
+ };
283
+ hiddenPasswordRatio: {
284
+ name: "hiddenPasswordRatio";
285
+ parents: import("@protontech/autofill/types").AbstractFeatures;
286
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
287
+ };
288
+ pageLogin: {
289
+ name: "pageLogin";
290
+ parents: import("@protontech/autofill/types").AbstractFeatures;
291
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
292
+ };
293
+ formTextLogin: {
294
+ name: "formTextLogin";
295
+ parents: import("@protontech/autofill/types").AbstractFeatures;
296
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
297
+ };
298
+ formAttrsLogin: {
299
+ name: "formAttrsLogin";
300
+ parents: import("@protontech/autofill/types").AbstractFeatures;
301
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
302
+ };
303
+ headingsLogin: {
304
+ name: "headingsLogin";
305
+ parents: import("@protontech/autofill/types").AbstractFeatures;
306
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
307
+ };
308
+ layoutLogin: {
309
+ name: "layoutLogin";
310
+ parents: import("@protontech/autofill/types").AbstractFeatures;
311
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
312
+ };
313
+ rememberMeCheckbox: {
314
+ name: "rememberMeCheckbox";
315
+ parents: import("@protontech/autofill/types").AbstractFeatures;
316
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
317
+ };
318
+ troubleLink: {
319
+ name: "troubleLink";
320
+ parents: import("@protontech/autofill/types").AbstractFeatures;
321
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
322
+ };
323
+ submitLogin: {
324
+ name: "submitLogin";
325
+ parents: import("@protontech/autofill/types").AbstractFeatures;
326
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
327
+ };
328
+ pageRegister: {
329
+ name: "pageRegister";
330
+ parents: import("@protontech/autofill/types").AbstractFeatures;
331
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
332
+ };
333
+ formTextRegister: {
334
+ name: "formTextRegister";
335
+ parents: import("@protontech/autofill/types").AbstractFeatures;
336
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
337
+ };
338
+ formAttrsRegister: {
339
+ name: "formAttrsRegister";
340
+ parents: import("@protontech/autofill/types").AbstractFeatures;
341
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
342
+ };
343
+ headingsRegister: {
344
+ name: "headingsRegister";
345
+ parents: import("@protontech/autofill/types").AbstractFeatures;
346
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
347
+ };
348
+ layoutRegister: {
349
+ name: "layoutRegister";
350
+ parents: import("@protontech/autofill/types").AbstractFeatures;
351
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
352
+ };
353
+ pwNewRegister: {
354
+ name: "pwNewRegister";
355
+ parents: import("@protontech/autofill/types").AbstractFeatures;
356
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
357
+ };
358
+ pwConfirmRegister: {
359
+ name: "pwConfirmRegister";
360
+ parents: import("@protontech/autofill/types").AbstractFeatures;
361
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
362
+ };
363
+ submitRegister: {
364
+ name: "submitRegister";
365
+ parents: import("@protontech/autofill/types").AbstractFeatures;
366
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
367
+ };
368
+ TOSRef: {
369
+ name: "TOSRef";
370
+ parents: import("@protontech/autofill/types").AbstractFeatures;
371
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
372
+ };
373
+ pagePwReset: {
374
+ name: "pagePwReset";
375
+ parents: import("@protontech/autofill/types").AbstractFeatures;
376
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
377
+ };
378
+ formTextPwReset: {
379
+ name: "formTextPwReset";
380
+ parents: import("@protontech/autofill/types").AbstractFeatures;
381
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
382
+ };
383
+ formAttrsPwReset: {
384
+ name: "formAttrsPwReset";
385
+ parents: import("@protontech/autofill/types").AbstractFeatures;
386
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
387
+ };
388
+ headingsPwReset: {
389
+ name: "headingsPwReset";
390
+ parents: import("@protontech/autofill/types").AbstractFeatures;
391
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
392
+ };
393
+ layoutPwReset: {
394
+ name: "layoutPwReset";
395
+ parents: import("@protontech/autofill/types").AbstractFeatures;
396
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
397
+ };
398
+ pageRecovery: {
399
+ name: "pageRecovery";
400
+ parents: import("@protontech/autofill/types").AbstractFeatures;
401
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
402
+ };
403
+ formTextRecovery: {
404
+ name: "formTextRecovery";
405
+ parents: import("@protontech/autofill/types").AbstractFeatures;
406
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
407
+ };
408
+ formAttrsRecovery: {
409
+ name: "formAttrsRecovery";
410
+ parents: import("@protontech/autofill/types").AbstractFeatures;
411
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
412
+ };
413
+ headingsRecovery: {
414
+ name: "headingsRecovery";
415
+ parents: import("@protontech/autofill/types").AbstractFeatures;
416
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
417
+ };
418
+ layoutRecovery: {
419
+ name: "layoutRecovery";
420
+ parents: import("@protontech/autofill/types").AbstractFeatures;
421
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
422
+ };
423
+ identifierRecovery: {
424
+ name: "identifierRecovery";
425
+ parents: import("@protontech/autofill/types").AbstractFeatures;
426
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
427
+ };
428
+ submitRecovery: {
429
+ name: "submitRecovery";
430
+ parents: import("@protontech/autofill/types").AbstractFeatures;
431
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
432
+ };
433
+ formTextMFA: {
434
+ name: "formTextMFA";
435
+ parents: import("@protontech/autofill/types").AbstractFeatures;
436
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
437
+ };
438
+ formAttrsMFA: {
439
+ name: "formAttrsMFA";
440
+ parents: import("@protontech/autofill/types").AbstractFeatures;
441
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
442
+ };
443
+ inputsMFA: {
444
+ name: "inputsMFA";
445
+ parents: import("@protontech/autofill/types").AbstractFeatures;
446
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
447
+ };
448
+ newsletterForm: {
449
+ name: "newsletterForm";
450
+ parents: import("@protontech/autofill/types").AbstractFeatures;
451
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
452
+ };
453
+ searchForm: {
454
+ name: "searchForm";
455
+ parents: import("@protontech/autofill/types").AbstractFeatures;
456
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
457
+ };
458
+ multistepForm: {
459
+ name: "multistepForm";
460
+ parents: import("@protontech/autofill/types").AbstractFeatures;
461
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
462
+ };
463
+ multiAuthForm: {
464
+ name: "multiAuthForm";
465
+ parents: import("@protontech/autofill/types").AbstractFeatures;
466
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
467
+ };
468
+ multistepForm_multiAuthForm: {
469
+ name: "multistepForm,multiAuthForm";
470
+ parents: import("@protontech/autofill/types").AbstractFeatures;
471
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
472
+ };
473
+ visibleRatio_visibleFieldsCount: {
474
+ name: "visibleRatio,visibleFieldsCountScaled";
475
+ parents: import("@protontech/autofill/types").AbstractFeatures;
476
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
477
+ };
478
+ visibleRatio_visibleIdentifiersCount: {
479
+ name: "visibleRatio,visibleIdentifiersCountScaled";
480
+ parents: import("@protontech/autofill/types").AbstractFeatures;
481
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
482
+ };
483
+ visibleRatio_visiblePasswordsCount: {
484
+ name: "visibleRatio,visiblePasswordsCountScaled";
485
+ parents: import("@protontech/autofill/types").AbstractFeatures;
486
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
487
+ };
488
+ visibleRatio_hiddenIdentifiersCount: {
489
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
490
+ parents: import("@protontech/autofill/types").AbstractFeatures;
491
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
492
+ };
493
+ visibleRatio_hiddenPasswordsCount: {
494
+ name: "visibleRatio,hiddenPasswordsCountScaled";
495
+ parents: import("@protontech/autofill/types").AbstractFeatures;
496
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
497
+ };
498
+ visibleRatio_multiAuthForm: {
499
+ name: "visibleRatio,multiAuthForm";
500
+ parents: import("@protontech/autofill/types").AbstractFeatures;
501
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
502
+ };
503
+ visibleRatio_multistepForm: {
504
+ name: "visibleRatio,multistepForm";
505
+ parents: import("@protontech/autofill/types").AbstractFeatures;
506
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
507
+ };
508
+ identifierRatio_visibleFieldsCount: {
509
+ name: "identifierRatio,visibleFieldsCountScaled";
510
+ parents: import("@protontech/autofill/types").AbstractFeatures;
511
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
512
+ };
513
+ identifierRatio_visibleIdentifiersCount: {
514
+ name: "identifierRatio,visibleIdentifiersCountScaled";
515
+ parents: import("@protontech/autofill/types").AbstractFeatures;
516
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
517
+ };
518
+ identifierRatio_visiblePasswordsCount: {
519
+ name: "identifierRatio,visiblePasswordsCountScaled";
520
+ parents: import("@protontech/autofill/types").AbstractFeatures;
521
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
522
+ };
523
+ identifierRatio_hiddenIdentifiersCount: {
524
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
525
+ parents: import("@protontech/autofill/types").AbstractFeatures;
526
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
527
+ };
528
+ identifierRatio_hiddenPasswordsCount: {
529
+ name: "identifierRatio,hiddenPasswordsCountScaled";
530
+ parents: import("@protontech/autofill/types").AbstractFeatures;
531
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
532
+ };
533
+ identifierRatio_multiAuthForm: {
534
+ name: "identifierRatio,multiAuthForm";
535
+ parents: import("@protontech/autofill/types").AbstractFeatures;
536
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
537
+ };
538
+ identifierRatio_multistepForm: {
539
+ name: "identifierRatio,multistepForm";
540
+ parents: import("@protontech/autofill/types").AbstractFeatures;
541
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
542
+ };
543
+ passwordRatio_visibleFieldsCount: {
544
+ name: "passwordRatio,visibleFieldsCountScaled";
545
+ parents: import("@protontech/autofill/types").AbstractFeatures;
546
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
547
+ };
548
+ passwordRatio_visibleIdentifiersCount: {
549
+ name: "passwordRatio,visibleIdentifiersCountScaled";
550
+ parents: import("@protontech/autofill/types").AbstractFeatures;
551
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
552
+ };
553
+ passwordRatio_visiblePasswordsCount: {
554
+ name: "passwordRatio,visiblePasswordsCountScaled";
555
+ parents: import("@protontech/autofill/types").AbstractFeatures;
556
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
557
+ };
558
+ passwordRatio_hiddenIdentifiersCount: {
559
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
560
+ parents: import("@protontech/autofill/types").AbstractFeatures;
561
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
562
+ };
563
+ passwordRatio_hiddenPasswordsCount: {
564
+ name: "passwordRatio,hiddenPasswordsCountScaled";
565
+ parents: import("@protontech/autofill/types").AbstractFeatures;
566
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
567
+ };
568
+ passwordRatio_multiAuthForm: {
569
+ name: "passwordRatio,multiAuthForm";
570
+ parents: import("@protontech/autofill/types").AbstractFeatures;
571
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
572
+ };
573
+ passwordRatio_multistepForm: {
574
+ name: "passwordRatio,multistepForm";
575
+ parents: import("@protontech/autofill/types").AbstractFeatures;
576
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
577
+ };
578
+ requiredRatio_visibleFieldsCount: {
579
+ name: "requiredRatio,visibleFieldsCountScaled";
580
+ parents: import("@protontech/autofill/types").AbstractFeatures;
581
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
582
+ };
583
+ requiredRatio_visibleIdentifiersCount: {
584
+ name: "requiredRatio,visibleIdentifiersCountScaled";
585
+ parents: import("@protontech/autofill/types").AbstractFeatures;
586
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
587
+ };
588
+ requiredRatio_visiblePasswordsCount: {
589
+ name: "requiredRatio,visiblePasswordsCountScaled";
590
+ parents: import("@protontech/autofill/types").AbstractFeatures;
591
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
592
+ };
593
+ requiredRatio_hiddenIdentifiersCount: {
594
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
595
+ parents: import("@protontech/autofill/types").AbstractFeatures;
596
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
597
+ };
598
+ requiredRatio_hiddenPasswordsCount: {
599
+ name: "requiredRatio,hiddenPasswordsCountScaled";
600
+ parents: import("@protontech/autofill/types").AbstractFeatures;
601
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
602
+ };
603
+ requiredRatio_multiAuthForm: {
604
+ name: "requiredRatio,multiAuthForm";
605
+ parents: import("@protontech/autofill/types").AbstractFeatures;
606
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
607
+ };
608
+ requiredRatio_multistepForm: {
609
+ name: "requiredRatio,multistepForm";
610
+ parents: import("@protontech/autofill/types").AbstractFeatures;
611
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
612
+ };
613
+ };
614
+ export declare const formFeaturesComputer: import("@protontech/autofill/types").FeatureComputer<{
615
+ __formInputMFACandidates: {
616
+ name: "__formInputMFACandidates";
617
+ parents: import("@protontech/autofill/types").AbstractFeatures;
618
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
619
+ };
620
+ __formMFA: {
621
+ name: "__formMFA";
622
+ parents: import("@protontech/autofill/types").AbstractFeatures;
623
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
624
+ };
625
+ __formOTPOutlier: {
626
+ name: "__formOTPOutlier";
627
+ parents: import("@protontech/autofill/types").AbstractFeatures;
628
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
629
+ };
630
+ __formTextAuthenticator: {
631
+ name: "__formTextAuthenticator";
632
+ parents: import("@protontech/autofill/types").AbstractFeatures;
633
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
634
+ };
635
+ __headingsOTPOutlier: {
636
+ name: "__headingsOTPOutlier";
637
+ parents: import("@protontech/autofill/types").AbstractFeatures;
638
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
639
+ };
640
+ __inputIterator: {
641
+ name: "__inputIterator";
642
+ parents: import("@protontech/autofill/types").AbstractFeatures;
643
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): import("@protontech/autofill/utils/form").FormInputIterator;
644
+ };
645
+ __linkOTPOutlier: {
646
+ name: "__linkOTPOutlier";
647
+ parents: import("@protontech/autofill/types").AbstractFeatures;
648
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
649
+ };
650
+ visibleFieldsCount: {
651
+ name: "visibleFieldsCountScaled";
652
+ parents: import("@protontech/autofill/types").AbstractFeatures;
653
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
654
+ };
655
+ visibleInputsCount: {
656
+ name: "visibleInputsCountScaled";
657
+ parents: import("@protontech/autofill/types").AbstractFeatures;
658
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
659
+ };
660
+ fieldsetsCount: {
661
+ name: "fieldsetsCountScaled";
662
+ parents: import("@protontech/autofill/types").AbstractFeatures;
663
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
664
+ };
665
+ textsCount: {
666
+ name: "textsCountScaled";
667
+ parents: import("@protontech/autofill/types").AbstractFeatures;
668
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
669
+ };
670
+ textareasCount: {
671
+ name: "textareasCountScaled";
672
+ parents: import("@protontech/autofill/types").AbstractFeatures;
673
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
674
+ };
675
+ selectsCount: {
676
+ name: "selectsCountScaled";
677
+ parents: import("@protontech/autofill/types").AbstractFeatures;
678
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
679
+ };
680
+ disabledCount: {
681
+ name: "disabledCountScaled";
682
+ parents: import("@protontech/autofill/types").AbstractFeatures;
683
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
684
+ };
685
+ radiosCount: {
686
+ name: "radiosCountScaled";
687
+ parents: import("@protontech/autofill/types").AbstractFeatures;
688
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
689
+ };
690
+ readOnlyCount: {
691
+ name: "readOnlyCountScaled";
692
+ parents: import("@protontech/autofill/types").AbstractFeatures;
693
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
694
+ };
695
+ formComplexity: {
696
+ name: "formComplexityScaled";
697
+ parents: import("@protontech/autofill/types").AbstractFeatures;
698
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
699
+ };
700
+ visibleIdentifiersCount: {
701
+ name: "visibleIdentifiersCountScaled";
702
+ parents: import("@protontech/autofill/types").AbstractFeatures;
703
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
704
+ };
705
+ hiddenIdentifiersCount: {
706
+ name: "hiddenIdentifiersCountScaled";
707
+ parents: import("@protontech/autofill/types").AbstractFeatures;
708
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
709
+ };
710
+ usernamesCount: {
711
+ name: "usernamesCountScaled";
712
+ parents: import("@protontech/autofill/types").AbstractFeatures;
713
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
714
+ };
715
+ emailsCount: {
716
+ name: "emailsCountScaled";
717
+ parents: import("@protontech/autofill/types").AbstractFeatures;
718
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
719
+ };
720
+ hiddenCount: {
721
+ name: "hiddenCountScaled";
722
+ parents: import("@protontech/autofill/types").AbstractFeatures;
723
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
724
+ };
725
+ hiddenPasswordsCount: {
726
+ name: "hiddenPasswordsCountScaled";
727
+ parents: import("@protontech/autofill/types").AbstractFeatures;
728
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
729
+ };
730
+ submitsCount: {
731
+ name: "submitsCountScaled";
732
+ parents: import("@protontech/autofill/types").AbstractFeatures;
733
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
734
+ };
735
+ identitiesCount: {
736
+ name: "identitiesCountScaled";
737
+ parents: import("@protontech/autofill/types").AbstractFeatures;
738
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
739
+ };
740
+ ccsCount: {
741
+ name: "ccsCountScaled";
742
+ parents: import("@protontech/autofill/types").AbstractFeatures;
743
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
744
+ };
745
+ hasTels: {
746
+ name: "hasTels";
747
+ parents: import("@protontech/autofill/types").AbstractFeatures;
748
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
749
+ };
750
+ hasOAuth: {
751
+ name: "hasOAuth";
752
+ parents: import("@protontech/autofill/types").AbstractFeatures;
753
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
754
+ };
755
+ hasCaptchas: {
756
+ name: "hasCaptchas";
757
+ parents: import("@protontech/autofill/types").AbstractFeatures;
758
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
759
+ };
760
+ hasFiles: {
761
+ name: "hasFiles";
762
+ parents: import("@protontech/autofill/types").AbstractFeatures;
763
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
764
+ };
765
+ hasDate: {
766
+ name: "hasDate";
767
+ parents: import("@protontech/autofill/types").AbstractFeatures;
768
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
769
+ };
770
+ hasNumber: {
771
+ name: "hasNumber";
772
+ parents: import("@protontech/autofill/types").AbstractFeatures;
773
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
774
+ };
775
+ oneVisibleField: {
776
+ name: "oneVisibleField";
777
+ parents: import("@protontech/autofill/types").AbstractFeatures;
778
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
779
+ };
780
+ twoVisibleFields: {
781
+ name: "twoVisibleFields";
782
+ parents: import("@protontech/autofill/types").AbstractFeatures;
783
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
784
+ };
785
+ threeOrMoreVisibleFields: {
786
+ name: "threeOrMoreVisibleFields";
787
+ parents: import("@protontech/autofill/types").AbstractFeatures;
788
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
789
+ };
790
+ noPasswords: {
791
+ name: "noPasswords";
792
+ parents: import("@protontech/autofill/types").AbstractFeatures;
793
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
794
+ };
795
+ onePassword: {
796
+ name: "onePassword";
797
+ parents: import("@protontech/autofill/types").AbstractFeatures;
798
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
799
+ };
800
+ twoPasswords: {
801
+ name: "twoPasswords";
802
+ parents: import("@protontech/autofill/types").AbstractFeatures;
803
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
804
+ };
805
+ threeOrMorePasswords: {
806
+ name: "threeOrMorePasswords";
807
+ parents: import("@protontech/autofill/types").AbstractFeatures;
808
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
809
+ };
810
+ noIdentifiers: {
811
+ name: "noIdentifiers";
812
+ parents: import("@protontech/autofill/types").AbstractFeatures;
813
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
814
+ };
815
+ oneIdentifier: {
816
+ name: "oneIdentifier";
817
+ parents: import("@protontech/autofill/types").AbstractFeatures;
818
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
819
+ };
820
+ twoIdentifiers: {
821
+ name: "twoIdentifiers";
822
+ parents: import("@protontech/autofill/types").AbstractFeatures;
823
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
824
+ };
825
+ threeOrMoreIdentifiers: {
826
+ name: "threeOrMoreIdentifiers";
827
+ parents: import("@protontech/autofill/types").AbstractFeatures;
828
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
829
+ };
830
+ autofocusedIsIdentifier: {
831
+ name: "autofocusedIsIdentifier";
832
+ parents: import("@protontech/autofill/types").AbstractFeatures;
833
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
834
+ };
835
+ autofocusedIsPassword: {
836
+ name: "autofocusedIsPassword";
837
+ parents: import("@protontech/autofill/types").AbstractFeatures;
838
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
839
+ };
840
+ visibleRatio: {
841
+ name: "visibleRatio";
842
+ parents: import("@protontech/autofill/types").AbstractFeatures;
843
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
844
+ };
845
+ inputRatio: {
846
+ name: "inputRatio";
847
+ parents: import("@protontech/autofill/types").AbstractFeatures;
848
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
849
+ };
850
+ hiddenRatio: {
851
+ name: "hiddenRatio";
852
+ parents: import("@protontech/autofill/types").AbstractFeatures;
853
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
854
+ };
855
+ identifierRatio: {
856
+ name: "identifierRatio";
857
+ parents: import("@protontech/autofill/types").AbstractFeatures;
858
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
859
+ };
860
+ emailRatio: {
861
+ name: "emailRatio";
862
+ parents: import("@protontech/autofill/types").AbstractFeatures;
863
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
864
+ };
865
+ usernameRatio: {
866
+ name: "usernameRatio";
867
+ parents: import("@protontech/autofill/types").AbstractFeatures;
868
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
869
+ };
870
+ passwordRatio: {
871
+ name: "passwordRatio";
872
+ parents: import("@protontech/autofill/types").AbstractFeatures;
873
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
874
+ };
875
+ disabledRatio: {
876
+ name: "disabledRatio";
877
+ parents: import("@protontech/autofill/types").AbstractFeatures;
878
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
879
+ };
880
+ requiredRatio: {
881
+ name: "requiredRatio";
882
+ parents: import("@protontech/autofill/types").AbstractFeatures;
883
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
884
+ };
885
+ checkboxRatio: {
886
+ name: "checkboxRatio";
887
+ parents: import("@protontech/autofill/types").AbstractFeatures;
888
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
889
+ };
890
+ hiddenIdentifierRatio: {
891
+ name: "hiddenIdentifierRatio";
892
+ parents: import("@protontech/autofill/types").AbstractFeatures;
893
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
894
+ };
895
+ hiddenPasswordRatio: {
896
+ name: "hiddenPasswordRatio";
897
+ parents: import("@protontech/autofill/types").AbstractFeatures;
898
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
899
+ };
900
+ pageLogin: {
901
+ name: "pageLogin";
902
+ parents: import("@protontech/autofill/types").AbstractFeatures;
903
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
904
+ };
905
+ formTextLogin: {
906
+ name: "formTextLogin";
907
+ parents: import("@protontech/autofill/types").AbstractFeatures;
908
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
909
+ };
910
+ formAttrsLogin: {
911
+ name: "formAttrsLogin";
912
+ parents: import("@protontech/autofill/types").AbstractFeatures;
913
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
914
+ };
915
+ headingsLogin: {
916
+ name: "headingsLogin";
917
+ parents: import("@protontech/autofill/types").AbstractFeatures;
918
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
919
+ };
920
+ layoutLogin: {
921
+ name: "layoutLogin";
922
+ parents: import("@protontech/autofill/types").AbstractFeatures;
923
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
924
+ };
925
+ rememberMeCheckbox: {
926
+ name: "rememberMeCheckbox";
927
+ parents: import("@protontech/autofill/types").AbstractFeatures;
928
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
929
+ };
930
+ troubleLink: {
931
+ name: "troubleLink";
932
+ parents: import("@protontech/autofill/types").AbstractFeatures;
933
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
934
+ };
935
+ submitLogin: {
936
+ name: "submitLogin";
937
+ parents: import("@protontech/autofill/types").AbstractFeatures;
938
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
939
+ };
940
+ pageRegister: {
941
+ name: "pageRegister";
942
+ parents: import("@protontech/autofill/types").AbstractFeatures;
943
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
944
+ };
945
+ formTextRegister: {
946
+ name: "formTextRegister";
947
+ parents: import("@protontech/autofill/types").AbstractFeatures;
948
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
949
+ };
950
+ formAttrsRegister: {
951
+ name: "formAttrsRegister";
952
+ parents: import("@protontech/autofill/types").AbstractFeatures;
953
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
954
+ };
955
+ headingsRegister: {
956
+ name: "headingsRegister";
957
+ parents: import("@protontech/autofill/types").AbstractFeatures;
958
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
959
+ };
960
+ layoutRegister: {
961
+ name: "layoutRegister";
962
+ parents: import("@protontech/autofill/types").AbstractFeatures;
963
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
964
+ };
965
+ pwNewRegister: {
966
+ name: "pwNewRegister";
967
+ parents: import("@protontech/autofill/types").AbstractFeatures;
968
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
969
+ };
970
+ pwConfirmRegister: {
971
+ name: "pwConfirmRegister";
972
+ parents: import("@protontech/autofill/types").AbstractFeatures;
973
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
974
+ };
975
+ submitRegister: {
976
+ name: "submitRegister";
977
+ parents: import("@protontech/autofill/types").AbstractFeatures;
978
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
979
+ };
980
+ TOSRef: {
981
+ name: "TOSRef";
982
+ parents: import("@protontech/autofill/types").AbstractFeatures;
983
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
984
+ };
985
+ pagePwReset: {
986
+ name: "pagePwReset";
987
+ parents: import("@protontech/autofill/types").AbstractFeatures;
988
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
989
+ };
990
+ formTextPwReset: {
991
+ name: "formTextPwReset";
992
+ parents: import("@protontech/autofill/types").AbstractFeatures;
993
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
994
+ };
995
+ formAttrsPwReset: {
996
+ name: "formAttrsPwReset";
997
+ parents: import("@protontech/autofill/types").AbstractFeatures;
998
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
999
+ };
1000
+ headingsPwReset: {
1001
+ name: "headingsPwReset";
1002
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1003
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1004
+ };
1005
+ layoutPwReset: {
1006
+ name: "layoutPwReset";
1007
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1008
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1009
+ };
1010
+ pageRecovery: {
1011
+ name: "pageRecovery";
1012
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1013
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1014
+ };
1015
+ formTextRecovery: {
1016
+ name: "formTextRecovery";
1017
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1018
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1019
+ };
1020
+ formAttrsRecovery: {
1021
+ name: "formAttrsRecovery";
1022
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1023
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1024
+ };
1025
+ headingsRecovery: {
1026
+ name: "headingsRecovery";
1027
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1028
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1029
+ };
1030
+ layoutRecovery: {
1031
+ name: "layoutRecovery";
1032
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1033
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1034
+ };
1035
+ identifierRecovery: {
1036
+ name: "identifierRecovery";
1037
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1038
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1039
+ };
1040
+ submitRecovery: {
1041
+ name: "submitRecovery";
1042
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1043
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1044
+ };
1045
+ formTextMFA: {
1046
+ name: "formTextMFA";
1047
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1048
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1049
+ };
1050
+ formAttrsMFA: {
1051
+ name: "formAttrsMFA";
1052
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1053
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1054
+ };
1055
+ inputsMFA: {
1056
+ name: "inputsMFA";
1057
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1058
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1059
+ };
1060
+ newsletterForm: {
1061
+ name: "newsletterForm";
1062
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1063
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1064
+ };
1065
+ searchForm: {
1066
+ name: "searchForm";
1067
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1068
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1069
+ };
1070
+ multistepForm: {
1071
+ name: "multistepForm";
1072
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1073
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1074
+ };
1075
+ multiAuthForm: {
1076
+ name: "multiAuthForm";
1077
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1078
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): boolean;
1079
+ };
1080
+ multistepForm_multiAuthForm: {
1081
+ name: "multistepForm,multiAuthForm";
1082
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1083
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1084
+ };
1085
+ visibleRatio_visibleFieldsCount: {
1086
+ name: "visibleRatio,visibleFieldsCountScaled";
1087
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1088
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1089
+ };
1090
+ visibleRatio_visibleIdentifiersCount: {
1091
+ name: "visibleRatio,visibleIdentifiersCountScaled";
1092
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1093
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1094
+ };
1095
+ visibleRatio_visiblePasswordsCount: {
1096
+ name: "visibleRatio,visiblePasswordsCountScaled";
1097
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1098
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1099
+ };
1100
+ visibleRatio_hiddenIdentifiersCount: {
1101
+ name: "visibleRatio,hiddenIdentifiersCountScaled";
1102
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1103
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1104
+ };
1105
+ visibleRatio_hiddenPasswordsCount: {
1106
+ name: "visibleRatio,hiddenPasswordsCountScaled";
1107
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1108
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1109
+ };
1110
+ visibleRatio_multiAuthForm: {
1111
+ name: "visibleRatio,multiAuthForm";
1112
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1113
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1114
+ };
1115
+ visibleRatio_multistepForm: {
1116
+ name: "visibleRatio,multistepForm";
1117
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1118
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1119
+ };
1120
+ identifierRatio_visibleFieldsCount: {
1121
+ name: "identifierRatio,visibleFieldsCountScaled";
1122
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1123
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1124
+ };
1125
+ identifierRatio_visibleIdentifiersCount: {
1126
+ name: "identifierRatio,visibleIdentifiersCountScaled";
1127
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1128
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1129
+ };
1130
+ identifierRatio_visiblePasswordsCount: {
1131
+ name: "identifierRatio,visiblePasswordsCountScaled";
1132
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1133
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1134
+ };
1135
+ identifierRatio_hiddenIdentifiersCount: {
1136
+ name: "identifierRatio,hiddenIdentifiersCountScaled";
1137
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1138
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1139
+ };
1140
+ identifierRatio_hiddenPasswordsCount: {
1141
+ name: "identifierRatio,hiddenPasswordsCountScaled";
1142
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1143
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1144
+ };
1145
+ identifierRatio_multiAuthForm: {
1146
+ name: "identifierRatio,multiAuthForm";
1147
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1148
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1149
+ };
1150
+ identifierRatio_multistepForm: {
1151
+ name: "identifierRatio,multistepForm";
1152
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1153
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1154
+ };
1155
+ passwordRatio_visibleFieldsCount: {
1156
+ name: "passwordRatio,visibleFieldsCountScaled";
1157
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1158
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1159
+ };
1160
+ passwordRatio_visibleIdentifiersCount: {
1161
+ name: "passwordRatio,visibleIdentifiersCountScaled";
1162
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1163
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1164
+ };
1165
+ passwordRatio_visiblePasswordsCount: {
1166
+ name: "passwordRatio,visiblePasswordsCountScaled";
1167
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1168
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1169
+ };
1170
+ passwordRatio_hiddenIdentifiersCount: {
1171
+ name: "passwordRatio,hiddenIdentifiersCountScaled";
1172
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1173
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1174
+ };
1175
+ passwordRatio_hiddenPasswordsCount: {
1176
+ name: "passwordRatio,hiddenPasswordsCountScaled";
1177
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1178
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1179
+ };
1180
+ passwordRatio_multiAuthForm: {
1181
+ name: "passwordRatio,multiAuthForm";
1182
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1183
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1184
+ };
1185
+ passwordRatio_multistepForm: {
1186
+ name: "passwordRatio,multistepForm";
1187
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1188
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1189
+ };
1190
+ requiredRatio_visibleFieldsCount: {
1191
+ name: "requiredRatio,visibleFieldsCountScaled";
1192
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1193
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1194
+ };
1195
+ requiredRatio_visibleIdentifiersCount: {
1196
+ name: "requiredRatio,visibleIdentifiersCountScaled";
1197
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1198
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1199
+ };
1200
+ requiredRatio_visiblePasswordsCount: {
1201
+ name: "requiredRatio,visiblePasswordsCountScaled";
1202
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1203
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1204
+ };
1205
+ requiredRatio_hiddenIdentifiersCount: {
1206
+ name: "requiredRatio,hiddenIdentifiersCountScaled";
1207
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1208
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1209
+ };
1210
+ requiredRatio_hiddenPasswordsCount: {
1211
+ name: "requiredRatio,hiddenPasswordsCountScaled";
1212
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1213
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1214
+ };
1215
+ requiredRatio_multiAuthForm: {
1216
+ name: "requiredRatio,multiAuthForm";
1217
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1218
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1219
+ };
1220
+ requiredRatio_multistepForm: {
1221
+ name: "requiredRatio,multistepForm";
1222
+ parents: import("@protontech/autofill/types").AbstractFeatures;
1223
+ compute(parents: import("@protontech/autofill/types").InferParentComputeType<import("@protontech/autofill/types").AbstractFeatures>, fnode: import("@protontech/fathom").Fnode): number;
1224
+ };
1225
+ }>;
1226
+ export type FormFeatures = ComputedFeatures<typeof formFeatures>;