@doneisbetter/gds-core 2.6.1 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/server.d.mts CHANGED
@@ -879,6 +879,773 @@ declare const GdsVocabulary: {
879
879
  };
880
880
  };
881
881
  type SemanticAction = keyof typeof GdsVocabulary;
882
+ declare function getSemanticActionConfig(action: SemanticAction): {
883
+ readonly id: "gds.action.settings";
884
+ readonly defaultMessage: "Settings";
885
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
886
+ readonly feedback: {
887
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
888
+ readonly color: "teal";
889
+ readonly messageId: "gds.feedback.saved";
890
+ };
891
+ } | {
892
+ readonly id: "gds.action.analytics";
893
+ readonly defaultMessage: "Analytics";
894
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
895
+ readonly feedback: {
896
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
897
+ readonly color: "teal";
898
+ readonly messageId: "gds.feedback.loaded";
899
+ };
900
+ } | {
901
+ readonly id: "gds.action.dashboard";
902
+ readonly defaultMessage: "Dashboard";
903
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
904
+ readonly feedback: {
905
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
906
+ readonly color: "teal";
907
+ readonly messageId: "gds.feedback.loaded";
908
+ };
909
+ } | {
910
+ readonly id: "gds.action.play";
911
+ readonly defaultMessage: "Play";
912
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
913
+ readonly feedback: {
914
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
915
+ readonly color: "teal";
916
+ readonly messageId: "gds.feedback.started";
917
+ };
918
+ } | {
919
+ readonly id: "gds.action.start";
920
+ readonly defaultMessage: "Start";
921
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
922
+ readonly feedback: {
923
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
924
+ readonly color: "teal";
925
+ readonly messageId: "gds.feedback.started";
926
+ };
927
+ } | {
928
+ readonly id: "gds.action.users";
929
+ readonly defaultMessage: "Users";
930
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
931
+ readonly feedback: {
932
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
933
+ readonly color: "teal";
934
+ readonly messageId: "gds.feedback.loaded";
935
+ };
936
+ } | {
937
+ readonly id: "gds.action.add";
938
+ readonly defaultMessage: "Add";
939
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
940
+ readonly feedback: {
941
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
942
+ readonly color: "teal";
943
+ readonly messageId: "gds.feedback.added";
944
+ };
945
+ } | {
946
+ readonly id: "gds.action.edit";
947
+ readonly defaultMessage: "Edit";
948
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
949
+ readonly feedback: {
950
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
951
+ readonly color: "teal";
952
+ readonly messageId: "gds.feedback.edited";
953
+ };
954
+ } | {
955
+ readonly id: "gds.action.delete";
956
+ readonly defaultMessage: "Delete";
957
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
958
+ readonly feedback: {
959
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
960
+ readonly color: "red";
961
+ readonly messageId: "gds.feedback.deleted";
962
+ };
963
+ } | {
964
+ readonly id: "gds.action.save";
965
+ readonly defaultMessage: "Save";
966
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
967
+ readonly feedback: {
968
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
969
+ readonly color: "teal";
970
+ readonly messageId: "gds.feedback.saved";
971
+ };
972
+ } | {
973
+ readonly id: "gds.action.cancel";
974
+ readonly defaultMessage: "Cancel";
975
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
976
+ readonly feedback: {
977
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
978
+ readonly color: "red";
979
+ readonly messageId: "gds.feedback.canceled";
980
+ };
981
+ } | {
982
+ readonly id: "gds.action.confirm";
983
+ readonly defaultMessage: "Confirm";
984
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
985
+ readonly feedback: {
986
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
987
+ readonly color: "teal";
988
+ readonly messageId: "gds.feedback.confirmed";
989
+ };
990
+ } | {
991
+ readonly id: "gds.action.close";
992
+ readonly defaultMessage: "Close";
993
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
994
+ readonly feedback: {
995
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
996
+ readonly color: "gray";
997
+ readonly messageId: "gds.feedback.closed";
998
+ };
999
+ } | {
1000
+ readonly id: "gds.action.language";
1001
+ readonly defaultMessage: "Language";
1002
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1003
+ readonly feedback: {
1004
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1005
+ readonly color: "teal";
1006
+ readonly messageId: "gds.feedback.changed";
1007
+ };
1008
+ } | {
1009
+ readonly id: "gds.action.theme";
1010
+ readonly defaultMessage: "Theme";
1011
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1012
+ readonly feedback: {
1013
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1014
+ readonly color: "teal";
1015
+ readonly messageId: "gds.feedback.changed";
1016
+ };
1017
+ } | {
1018
+ readonly id: "gds.action.home";
1019
+ readonly defaultMessage: "Home";
1020
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1021
+ readonly feedback: {
1022
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1023
+ readonly color: "teal";
1024
+ readonly messageId: "gds.feedback.opened";
1025
+ };
1026
+ } | {
1027
+ readonly id: "gds.action.inbox";
1028
+ readonly defaultMessage: "Inbox";
1029
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1030
+ readonly feedback: {
1031
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1032
+ readonly color: "teal";
1033
+ readonly messageId: "gds.feedback.opened";
1034
+ };
1035
+ } | {
1036
+ readonly id: "gds.action.calendar";
1037
+ readonly defaultMessage: "Calendar";
1038
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1039
+ readonly feedback: {
1040
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1041
+ readonly color: "teal";
1042
+ readonly messageId: "gds.feedback.opened";
1043
+ };
1044
+ } | {
1045
+ readonly id: "gds.action.gallery";
1046
+ readonly defaultMessage: "Gallery";
1047
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1048
+ readonly feedback: {
1049
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1050
+ readonly color: "teal";
1051
+ readonly messageId: "gds.feedback.opened";
1052
+ };
1053
+ } | {
1054
+ readonly id: "gds.action.history";
1055
+ readonly defaultMessage: "History";
1056
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1057
+ readonly feedback: {
1058
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1059
+ readonly color: "teal";
1060
+ readonly messageId: "gds.feedback.opened";
1061
+ };
1062
+ } | {
1063
+ readonly id: "gds.action.profile";
1064
+ readonly defaultMessage: "Profile";
1065
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1066
+ readonly feedback: {
1067
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1068
+ readonly color: "teal";
1069
+ readonly messageId: "gds.feedback.opened";
1070
+ };
1071
+ } | {
1072
+ readonly id: "gds.action.send";
1073
+ readonly defaultMessage: "Send";
1074
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1075
+ readonly feedback: {
1076
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1077
+ readonly color: "blue";
1078
+ readonly messageId: "gds.feedback.sent";
1079
+ };
1080
+ } | {
1081
+ readonly id: "gds.action.reply";
1082
+ readonly defaultMessage: "Reply";
1083
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1084
+ readonly feedback: {
1085
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1086
+ readonly color: "blue";
1087
+ readonly messageId: "gds.feedback.replied";
1088
+ };
1089
+ } | {
1090
+ readonly id: "gds.action.forward";
1091
+ readonly defaultMessage: "Forward";
1092
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1093
+ readonly feedback: {
1094
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1095
+ readonly color: "blue";
1096
+ readonly messageId: "gds.feedback.forwarded";
1097
+ };
1098
+ } | {
1099
+ readonly id: "gds.action.attach";
1100
+ readonly defaultMessage: "Attach";
1101
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1102
+ readonly feedback: {
1103
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1104
+ readonly color: "teal";
1105
+ readonly messageId: "gds.feedback.attached";
1106
+ };
1107
+ } | {
1108
+ readonly id: "gds.action.upload";
1109
+ readonly defaultMessage: "Upload";
1110
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1111
+ readonly feedback: {
1112
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1113
+ readonly color: "teal";
1114
+ readonly messageId: "gds.feedback.uploaded";
1115
+ };
1116
+ } | {
1117
+ readonly id: "gds.action.download";
1118
+ readonly defaultMessage: "Download";
1119
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1120
+ readonly feedback: {
1121
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1122
+ readonly color: "teal";
1123
+ readonly messageId: "gds.feedback.downloaded";
1124
+ };
1125
+ } | {
1126
+ readonly id: "gds.action.print";
1127
+ readonly defaultMessage: "Print";
1128
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1129
+ readonly feedback: {
1130
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1131
+ readonly color: "teal";
1132
+ readonly messageId: "gds.feedback.printed";
1133
+ };
1134
+ } | {
1135
+ readonly id: "gds.action.copy";
1136
+ readonly defaultMessage: "Copy";
1137
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1138
+ readonly feedback: {
1139
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1140
+ readonly color: "teal";
1141
+ readonly messageId: "gds.feedback.copied";
1142
+ };
1143
+ } | {
1144
+ readonly id: "gds.action.duplicate";
1145
+ readonly defaultMessage: "Duplicate";
1146
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1147
+ readonly feedback: {
1148
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1149
+ readonly color: "teal";
1150
+ readonly messageId: "gds.feedback.duplicated";
1151
+ };
1152
+ } | {
1153
+ readonly id: "gds.action.check";
1154
+ readonly defaultMessage: "Check";
1155
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1156
+ readonly feedback: {
1157
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1158
+ readonly color: "teal";
1159
+ readonly messageId: "gds.feedback.checked";
1160
+ };
1161
+ } | {
1162
+ readonly id: "gds.action.uncheck";
1163
+ readonly defaultMessage: "Uncheck";
1164
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1165
+ readonly feedback: {
1166
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1167
+ readonly color: "red";
1168
+ readonly messageId: "gds.feedback.unchecked";
1169
+ };
1170
+ } | {
1171
+ readonly id: "gds.action.complete";
1172
+ readonly defaultMessage: "Complete";
1173
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1174
+ readonly feedback: {
1175
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1176
+ readonly color: "teal";
1177
+ readonly messageId: "gds.feedback.completed";
1178
+ };
1179
+ } | {
1180
+ readonly id: "gds.action.clear";
1181
+ readonly defaultMessage: "Clear";
1182
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1183
+ readonly feedback: {
1184
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1185
+ readonly color: "red";
1186
+ readonly messageId: "gds.feedback.cleared";
1187
+ };
1188
+ } | {
1189
+ readonly id: "gds.action.capture";
1190
+ readonly defaultMessage: "Capture";
1191
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1192
+ readonly feedback: {
1193
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1194
+ readonly color: "teal";
1195
+ readonly messageId: "gds.feedback.captured";
1196
+ };
1197
+ } | {
1198
+ readonly id: "gds.action.record";
1199
+ readonly defaultMessage: "Record";
1200
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1201
+ readonly feedback: {
1202
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1203
+ readonly color: "teal";
1204
+ readonly messageId: "gds.feedback.recorded";
1205
+ };
1206
+ } | {
1207
+ readonly id: "gds.action.flip";
1208
+ readonly defaultMessage: "Flip";
1209
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1210
+ readonly feedback: {
1211
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1212
+ readonly color: "teal";
1213
+ readonly messageId: "gds.feedback.flipped";
1214
+ };
1215
+ } | {
1216
+ readonly id: "gds.action.flash";
1217
+ readonly defaultMessage: "Flash";
1218
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1219
+ readonly feedback: {
1220
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1221
+ readonly color: "teal";
1222
+ readonly messageId: "gds.feedback.flashed";
1223
+ };
1224
+ } | {
1225
+ readonly id: "gds.action.course";
1226
+ readonly defaultMessage: "Course";
1227
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1228
+ readonly feedback: {
1229
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1230
+ readonly color: "teal";
1231
+ readonly messageId: "gds.feedback.done";
1232
+ };
1233
+ } | {
1234
+ readonly id: "gds.action.lesson";
1235
+ readonly defaultMessage: "Lesson";
1236
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1237
+ readonly feedback: {
1238
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1239
+ readonly color: "teal";
1240
+ readonly messageId: "gds.feedback.done";
1241
+ };
1242
+ } | {
1243
+ readonly id: "gds.action.certificate";
1244
+ readonly defaultMessage: "Certificate";
1245
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1246
+ readonly feedback: {
1247
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1248
+ readonly color: "teal";
1249
+ readonly messageId: "gds.feedback.done";
1250
+ };
1251
+ } | {
1252
+ readonly id: "gds.action.student";
1253
+ readonly defaultMessage: "Student";
1254
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1255
+ readonly feedback: {
1256
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1257
+ readonly color: "teal";
1258
+ readonly messageId: "gds.feedback.done";
1259
+ };
1260
+ } | {
1261
+ readonly id: "gds.action.class";
1262
+ readonly defaultMessage: "Class";
1263
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1264
+ readonly feedback: {
1265
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1266
+ readonly color: "teal";
1267
+ readonly messageId: "gds.feedback.done";
1268
+ };
1269
+ } | {
1270
+ readonly id: "gds.action.grade";
1271
+ readonly defaultMessage: "Grade";
1272
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1273
+ readonly feedback: {
1274
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1275
+ readonly color: "teal";
1276
+ readonly messageId: "gds.feedback.done";
1277
+ };
1278
+ } | {
1279
+ readonly id: "gds.action.child";
1280
+ readonly defaultMessage: "Child";
1281
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1282
+ readonly feedback: {
1283
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1284
+ readonly color: "teal";
1285
+ readonly messageId: "gds.feedback.done";
1286
+ };
1287
+ } | {
1288
+ readonly id: "gds.action.family";
1289
+ readonly defaultMessage: "Family";
1290
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1291
+ readonly feedback: {
1292
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1293
+ readonly color: "teal";
1294
+ readonly messageId: "gds.feedback.done";
1295
+ };
1296
+ } | {
1297
+ readonly id: "gds.action.habit";
1298
+ readonly defaultMessage: "Habit";
1299
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1300
+ readonly feedback: {
1301
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1302
+ readonly color: "teal";
1303
+ readonly messageId: "gds.feedback.done";
1304
+ };
1305
+ } | {
1306
+ readonly id: "gds.action.goal";
1307
+ readonly defaultMessage: "Goal";
1308
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1309
+ readonly feedback: {
1310
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1311
+ readonly color: "teal";
1312
+ readonly messageId: "gds.feedback.done";
1313
+ };
1314
+ } | {
1315
+ readonly id: "gds.action.streak";
1316
+ readonly defaultMessage: "Streak";
1317
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1318
+ readonly feedback: {
1319
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1320
+ readonly color: "teal";
1321
+ readonly messageId: "gds.feedback.done";
1322
+ };
1323
+ } | {
1324
+ readonly id: "gds.action.reward";
1325
+ readonly defaultMessage: "Reward";
1326
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1327
+ readonly feedback: {
1328
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1329
+ readonly color: "yellow";
1330
+ readonly messageId: "gds.feedback.rewarded";
1331
+ };
1332
+ } | {
1333
+ readonly id: "gds.action.trophy";
1334
+ readonly defaultMessage: "Trophy";
1335
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1336
+ readonly feedback: {
1337
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1338
+ readonly color: "yellow";
1339
+ readonly messageId: "gds.feedback.rewarded";
1340
+ };
1341
+ } | {
1342
+ readonly id: "gds.action.crown";
1343
+ readonly defaultMessage: "Crown";
1344
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1345
+ readonly feedback: {
1346
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1347
+ readonly color: "yellow";
1348
+ readonly messageId: "gds.feedback.rewarded";
1349
+ };
1350
+ } | {
1351
+ readonly id: "gds.action.pause";
1352
+ readonly defaultMessage: "Pause";
1353
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1354
+ readonly feedback: {
1355
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1356
+ readonly color: "teal";
1357
+ readonly messageId: "gds.feedback.paused";
1358
+ };
1359
+ } | {
1360
+ readonly id: "gds.action.message";
1361
+ readonly defaultMessage: "Message";
1362
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1363
+ readonly feedback: {
1364
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1365
+ readonly color: "blue";
1366
+ readonly messageId: "gds.feedback.sent";
1367
+ };
1368
+ } | {
1369
+ readonly id: "gds.action.mail";
1370
+ readonly defaultMessage: "Mail";
1371
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1372
+ readonly feedback: {
1373
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1374
+ readonly color: "blue";
1375
+ readonly messageId: "gds.feedback.mailed";
1376
+ };
1377
+ } | {
1378
+ readonly id: "gds.action.refresh";
1379
+ readonly defaultMessage: "Refresh";
1380
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1381
+ readonly feedback: {
1382
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1383
+ readonly color: "teal";
1384
+ readonly messageId: "gds.feedback.refreshed";
1385
+ };
1386
+ } | {
1387
+ readonly id: "gds.action.trendingUp";
1388
+ readonly defaultMessage: "Trending Up";
1389
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1390
+ readonly feedback: {
1391
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1392
+ readonly color: "teal";
1393
+ readonly messageId: "gds.feedback.done";
1394
+ };
1395
+ } | {
1396
+ readonly id: "gds.action.trendingDown";
1397
+ readonly defaultMessage: "Trending Down";
1398
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1399
+ readonly feedback: {
1400
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1401
+ readonly color: "teal";
1402
+ readonly messageId: "gds.feedback.done";
1403
+ };
1404
+ } | {
1405
+ readonly id: "gds.action.currency";
1406
+ readonly defaultMessage: "Currency";
1407
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1408
+ readonly feedback: {
1409
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1410
+ readonly color: "teal";
1411
+ readonly messageId: "gds.feedback.done";
1412
+ };
1413
+ } | {
1414
+ readonly id: "gds.action.grid";
1415
+ readonly defaultMessage: "Grid";
1416
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1417
+ readonly feedback: {
1418
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1419
+ readonly color: "teal";
1420
+ readonly messageId: "gds.feedback.done";
1421
+ };
1422
+ } | {
1423
+ readonly id: "gds.action.list";
1424
+ readonly defaultMessage: "List";
1425
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1426
+ readonly feedback: {
1427
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1428
+ readonly color: "teal";
1429
+ readonly messageId: "gds.feedback.done";
1430
+ };
1431
+ } | {
1432
+ readonly id: "gds.action.logout";
1433
+ readonly defaultMessage: "Logout";
1434
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1435
+ readonly feedback: {
1436
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1437
+ readonly color: "teal";
1438
+ readonly messageId: "gds.feedback.loggedOut";
1439
+ };
1440
+ } | {
1441
+ readonly id: "gds.action.notifications";
1442
+ readonly defaultMessage: "Notifications";
1443
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1444
+ readonly feedback: {
1445
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1446
+ readonly color: "teal";
1447
+ readonly messageId: "gds.feedback.done";
1448
+ };
1449
+ } | {
1450
+ readonly id: "gds.action.back";
1451
+ readonly defaultMessage: "Back";
1452
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1453
+ readonly feedback: {
1454
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1455
+ readonly color: "teal";
1456
+ readonly messageId: "gds.feedback.done";
1457
+ };
1458
+ } | {
1459
+ readonly id: "gds.action.eye";
1460
+ readonly defaultMessage: "View";
1461
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1462
+ readonly feedback: {
1463
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1464
+ readonly color: "teal";
1465
+ readonly messageId: "gds.feedback.done";
1466
+ };
1467
+ } | {
1468
+ readonly id: "gds.action.eyeOff";
1469
+ readonly defaultMessage: "Hide";
1470
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1471
+ readonly feedback: {
1472
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1473
+ readonly color: "teal";
1474
+ readonly messageId: "gds.feedback.done";
1475
+ };
1476
+ } | {
1477
+ readonly id: "gds.action.help";
1478
+ readonly defaultMessage: "Help";
1479
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1480
+ readonly feedback: {
1481
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1482
+ readonly color: "teal";
1483
+ readonly messageId: "gds.feedback.done";
1484
+ };
1485
+ } | {
1486
+ readonly id: "gds.action.filter";
1487
+ readonly defaultMessage: "Filter";
1488
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1489
+ readonly feedback: {
1490
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1491
+ readonly color: "teal";
1492
+ readonly messageId: "gds.feedback.filtered";
1493
+ };
1494
+ } | {
1495
+ readonly id: "gds.action.sort";
1496
+ readonly defaultMessage: "Sort";
1497
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1498
+ readonly feedback: {
1499
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1500
+ readonly color: "teal";
1501
+ readonly messageId: "gds.feedback.sorted";
1502
+ };
1503
+ } | {
1504
+ readonly id: "gds.action.export";
1505
+ readonly defaultMessage: "Export";
1506
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1507
+ readonly feedback: {
1508
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1509
+ readonly color: "teal";
1510
+ readonly messageId: "gds.feedback.exported";
1511
+ };
1512
+ } | {
1513
+ readonly id: "gds.action.import";
1514
+ readonly defaultMessage: "Import";
1515
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1516
+ readonly feedback: {
1517
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1518
+ readonly color: "teal";
1519
+ readonly messageId: "gds.feedback.imported";
1520
+ };
1521
+ } | {
1522
+ readonly id: "gds.action.preview";
1523
+ readonly defaultMessage: "Preview";
1524
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1525
+ readonly feedback: {
1526
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1527
+ readonly color: "teal";
1528
+ readonly messageId: "gds.feedback.previewed";
1529
+ };
1530
+ } | {
1531
+ readonly id: "gds.action.clone";
1532
+ readonly defaultMessage: "Clone";
1533
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1534
+ readonly feedback: {
1535
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1536
+ readonly color: "teal";
1537
+ readonly messageId: "gds.feedback.cloned";
1538
+ };
1539
+ } | {
1540
+ readonly id: "gds.action.restore";
1541
+ readonly defaultMessage: "Restore";
1542
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1543
+ readonly feedback: {
1544
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1545
+ readonly color: "teal";
1546
+ readonly messageId: "gds.feedback.restored";
1547
+ };
1548
+ } | {
1549
+ readonly id: "gds.action.toggle";
1550
+ readonly defaultMessage: "Toggle";
1551
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1552
+ readonly feedback: {
1553
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1554
+ readonly color: "teal";
1555
+ readonly messageId: "gds.feedback.toggled";
1556
+ };
1557
+ } | {
1558
+ readonly id: "gds.action.search";
1559
+ readonly defaultMessage: "Search";
1560
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1561
+ readonly feedback: {
1562
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1563
+ readonly color: "teal";
1564
+ readonly messageId: "gds.feedback.searched";
1565
+ };
1566
+ } | {
1567
+ readonly id: "gds.action.submit";
1568
+ readonly defaultMessage: "Submit";
1569
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1570
+ readonly feedback: {
1571
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1572
+ readonly color: "teal";
1573
+ readonly messageId: "gds.feedback.submitted";
1574
+ };
1575
+ } | {
1576
+ readonly id: "gds.action.reset";
1577
+ readonly defaultMessage: "Reset";
1578
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1579
+ readonly feedback: {
1580
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1581
+ readonly color: "red";
1582
+ readonly messageId: "gds.feedback.reset";
1583
+ };
1584
+ } | {
1585
+ readonly id: "gds.action.login";
1586
+ readonly defaultMessage: "Login";
1587
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1588
+ readonly feedback: {
1589
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1590
+ readonly color: "teal";
1591
+ readonly messageId: "gds.feedback.loggedIn";
1592
+ };
1593
+ } | {
1594
+ readonly id: "gds.action.register";
1595
+ readonly defaultMessage: "Register";
1596
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1597
+ readonly feedback: {
1598
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1599
+ readonly color: "teal";
1600
+ readonly messageId: "gds.feedback.registered";
1601
+ };
1602
+ } | {
1603
+ readonly id: "gds.action.verify";
1604
+ readonly defaultMessage: "Verify";
1605
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1606
+ readonly feedback: {
1607
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1608
+ readonly color: "teal";
1609
+ readonly messageId: "gds.feedback.verified";
1610
+ };
1611
+ } | {
1612
+ readonly id: "gds.action.launch";
1613
+ readonly defaultMessage: "Launch";
1614
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1615
+ readonly feedback: {
1616
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1617
+ readonly color: "purple";
1618
+ readonly messageId: "gds.feedback.launched";
1619
+ };
1620
+ } | {
1621
+ readonly id: "gds.action.draft";
1622
+ readonly defaultMessage: "Draft";
1623
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1624
+ readonly feedback: {
1625
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1626
+ readonly color: "teal";
1627
+ readonly messageId: "gds.feedback.drafted";
1628
+ };
1629
+ } | {
1630
+ readonly id: "gds.action.refer";
1631
+ readonly defaultMessage: "Refer";
1632
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1633
+ readonly feedback: {
1634
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1635
+ readonly color: "teal";
1636
+ readonly messageId: "gds.feedback.referred";
1637
+ };
1638
+ } | {
1639
+ readonly id: "gds.action.evidence";
1640
+ readonly defaultMessage: "Evidence";
1641
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1642
+ readonly feedback: {
1643
+ readonly icon: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
1644
+ readonly color: "teal";
1645
+ readonly messageId: "gds.feedback.added";
1646
+ };
1647
+ };
1648
+ declare function getSemanticActionLabel(action: SemanticAction, translate?: (id: string, defaultMessage: string) => string): string;
882
1649
 
883
1650
  /**
884
1651
  * GdsIcons is the centralized semantic icon dictionary.
@@ -983,6 +1750,19 @@ declare const GdsIcons: {
983
1750
  Sun: react.ForwardRefExoticComponent<_tabler_icons_react.IconProps & react.RefAttributes<SVGSVGElement>>;
984
1751
  };
985
1752
 
1753
+ interface ChoiceChipProps extends Omit<BadgeProps, 'children' | 'variant'> {
1754
+ label: ReactNode;
1755
+ active?: boolean;
1756
+ href?: string;
1757
+ onClick?: React.MouseEventHandler<HTMLElement>;
1758
+ component?: React.ElementType;
1759
+ }
1760
+ /**
1761
+ * ChoiceChip provides a neutral, token-safe chip for lightweight selection,
1762
+ * mode toggles, and taxonomy links without introducing page-local badge rules.
1763
+ */
1764
+ declare function ChoiceChip({ label, active, href, onClick, component, ...props }: ChoiceChipProps): react_jsx_runtime.JSX.Element;
1765
+
986
1766
  interface MetricCardProps {
987
1767
  label: string;
988
1768
  value: ReactNode;
@@ -1263,11 +2043,12 @@ interface AuthShellProps {
1263
2043
  title: string;
1264
2044
  description?: ReactNode;
1265
2045
  brand?: ReactNode;
2046
+ headerActions?: ReactNode;
1266
2047
  footer?: ReactNode;
1267
2048
  helper?: ReactNode;
1268
2049
  children: ReactNode;
1269
2050
  }
1270
- declare function AuthShell({ title, description, brand, footer, helper, children }: AuthShellProps): react_jsx_runtime.JSX.Element;
2051
+ declare function AuthShell({ title, description, brand, headerActions, footer, helper, children }: AuthShellProps): react_jsx_runtime.JSX.Element;
1271
2052
 
1272
2053
  interface ArticleShellProps {
1273
2054
  eyebrow?: string;
@@ -1418,11 +2199,12 @@ type PageHeaderEyebrowVariant = 'neutral' | 'ornamental';
1418
2199
  interface PageHeaderProps {
1419
2200
  title: string;
1420
2201
  description?: string;
2202
+ subtitle?: string;
1421
2203
  eyebrow?: string;
1422
2204
  actions?: react__default.ReactNode;
1423
2205
  eyebrowVariant?: PageHeaderEyebrowVariant;
1424
2206
  }
1425
- declare function PageHeader({ title, description, eyebrow, actions, eyebrowVariant, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
2207
+ declare function PageHeader({ title, description, subtitle, eyebrow, actions, eyebrowVariant, }: PageHeaderProps): react_jsx_runtime.JSX.Element;
1426
2208
 
1427
2209
  type FilterDrawerMode = 'side' | 'bottom-sheet';
1428
2210
  interface FilterDrawerProps {
@@ -5289,4 +6071,4 @@ declare function getGdsMessages(locale: GdsLocale | string): {
5289
6071
  'gds.state.emptyData': string;
5290
6072
  };
5291
6073
 
5292
- export { AccentPanel, type AccentPanelProps, type AccentPanelVariant, type AccentTone, AccessSummary, type AccessSummaryProps, ArticleShell, type ArticleShellProps, AuthShell, type AuthShellProps, type BreadcrumbItem, BrowseSurface, type BrowseSurfaceFilterChip, type BrowseSurfaceProps, type BrowseSurfaceScopeOption, ConsumerDashboardGrid, type ConsumerDashboardGridProps, ConsumerSection, type ConsumerSectionProps, CtaButtonGroup, type CtaButtonGroupProps, DataToolbar, type DataToolbarFilterChip, type DataToolbarProps, DocsPageShell, type DocsPageShellProps, EditorialCard, type EditorialCardProps, EditorialHero, type EditorialHeroAction, type EditorialHeroMetaItem, type EditorialHeroProps, EmptyState, type EmptyStateProps, FeatureBand, type FeatureBandItem, type FeatureBandProps, FilterDrawer, type FilterDrawerMode, type FilterDrawerProps, FormField, type FormFieldProps, GdsIcons, type GdsLocale, GdsVocabulary, MediaCard, type MediaCardAction, type MediaCardProps, MediaField, type MediaFieldProps, MetricCard, type MetricCardProps, PageHeader, type PageHeaderEyebrowVariant, type PageHeaderProps, PlaceholderPanel, type PlaceholderPanelProps, ProductCard, type ProductCardAction, type ProductCardMetaItem, type ProductCardProps, ProgressCard, type ProgressCardProps, PublicBrandFooter, type PublicBrandFooterClassNames, type PublicBrandFooterLayoutVariant, type PublicBrandFooterProps, PublicNav, type PublicNavItem, type PublicNavProps, PublicProductCard, type PublicProductCardHelperKind, type PublicProductCardMetaItem, type PublicProductCardProps, type PublicProductCardState, PublicShell, type PublicShellClassNames, type PublicShellHeaderVariant, type PublicShellMobileNavigationMode, type PublicShellProps, PublicSiteFooter, type PublicSiteFooterProps, SectionPanel, type SectionPanelProps, type SectionPanelTone, type SemanticAction, SimpleDataTable, type SimpleDataTableProps, type SimpleTableColumn, StateBlock, type StateBlockProps, type StateBlockVariant, StatsSection, type StatsSectionProps, StatusBadge, type StatusBadgeProps, type StatusVariant, ar, de, en, es, fr, gdsLocales, getGdsMessages, he, hu, it, resolveAccentPanelStyles, ru };
6074
+ export { AccentPanel, type AccentPanelProps, type AccentPanelVariant, type AccentTone, AccessSummary, type AccessSummaryProps, ArticleShell, type ArticleShellProps, AuthShell, type AuthShellProps, type BreadcrumbItem, BrowseSurface, type BrowseSurfaceFilterChip, type BrowseSurfaceProps, type BrowseSurfaceScopeOption, ChoiceChip, type ChoiceChipProps, ConsumerDashboardGrid, type ConsumerDashboardGridProps, ConsumerSection, type ConsumerSectionProps, CtaButtonGroup, type CtaButtonGroupProps, DataToolbar, type DataToolbarFilterChip, type DataToolbarProps, DocsPageShell, type DocsPageShellProps, EditorialCard, type EditorialCardProps, EditorialHero, type EditorialHeroAction, type EditorialHeroMetaItem, type EditorialHeroProps, EmptyState, type EmptyStateProps, FeatureBand, type FeatureBandItem, type FeatureBandProps, FilterDrawer, type FilterDrawerMode, type FilterDrawerProps, FormField, type FormFieldProps, GdsIcons, type GdsLocale, GdsVocabulary, MediaCard, type MediaCardAction, type MediaCardProps, MediaField, type MediaFieldProps, MetricCard, type MetricCardProps, PageHeader, type PageHeaderEyebrowVariant, type PageHeaderProps, PlaceholderPanel, type PlaceholderPanelProps, ProductCard, type ProductCardAction, type ProductCardMetaItem, type ProductCardProps, ProgressCard, type ProgressCardProps, PublicBrandFooter, type PublicBrandFooterClassNames, type PublicBrandFooterLayoutVariant, type PublicBrandFooterProps, PublicNav, type PublicNavItem, type PublicNavProps, PublicProductCard, type PublicProductCardHelperKind, type PublicProductCardMetaItem, type PublicProductCardProps, type PublicProductCardState, PublicShell, type PublicShellClassNames, type PublicShellHeaderVariant, type PublicShellMobileNavigationMode, type PublicShellProps, PublicSiteFooter, type PublicSiteFooterProps, SectionPanel, type SectionPanelProps, type SectionPanelTone, type SemanticAction, SimpleDataTable, type SimpleDataTableProps, type SimpleTableColumn, StateBlock, type StateBlockProps, type StateBlockVariant, StatsSection, type StatsSectionProps, StatusBadge, type StatusBadgeProps, type StatusVariant, ar, de, en, es, fr, gdsLocales, getGdsMessages, getSemanticActionConfig, getSemanticActionLabel, he, hu, it, resolveAccentPanelStyles, ru };