@sphereon/idk-lib-conf-theme-core-public 0.25.0-SNAPSHOT-build-1d61bce

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.
@@ -0,0 +1,1934 @@
1
+ type Nullable<T> = T | null | undefined
2
+ declare function KtSingleton<T>(): T & (abstract new() => any);
3
+ export declare interface KtList<E> /* extends Collection<E> */ {
4
+ asJsReadonlyArrayView(): ReadonlyArray<E>;
5
+ readonly __doNotUseOrImplementIt: {
6
+ readonly "kotlin.collections.KtList": unique symbol;
7
+ };
8
+ }
9
+ export declare namespace KtList {
10
+ function fromJsArray<E>(array: ReadonlyArray<E>): KtList<E>;
11
+ }
12
+ export declare interface KtMap<K, V> {
13
+ asJsReadonlyMapView(): ReadonlyMap<K, V>;
14
+ readonly __doNotUseOrImplementIt: {
15
+ readonly "kotlin.collections.KtMap": unique symbol;
16
+ };
17
+ }
18
+ export declare namespace KtMap {
19
+ function fromJsMap<K, V>(map: ReadonlyMap<K, V>): KtMap<K, V>;
20
+ }
21
+ export declare interface KtMutableList<E> extends KtList<E>/*, MutableCollection<E> */ {
22
+ asJsArrayView(): Array<E>;
23
+ readonly __doNotUseOrImplementIt: {
24
+ readonly "kotlin.collections.KtMutableList": unique symbol;
25
+ } & KtList<any>["__doNotUseOrImplementIt"];
26
+ }
27
+ export declare namespace KtMutableList {
28
+ function fromJsArray<E>(array: ReadonlyArray<E>): KtMutableList<E>;
29
+ }
30
+ export declare interface KtMutableMap<K, V> extends KtMap<K, V> {
31
+ asJsMapView(): Map<K, V>;
32
+ readonly __doNotUseOrImplementIt: {
33
+ readonly "kotlin.collections.KtMutableMap": unique symbol;
34
+ } & KtMap<any, any>["__doNotUseOrImplementIt"];
35
+ }
36
+ export declare namespace KtMutableMap {
37
+ function fromJsMap<K, V>(map: ReadonlyMap<K, V>): KtMutableMap<K, V>;
38
+ }
39
+ export declare interface KtSet<E> /* extends Collection<E> */ {
40
+ asJsReadonlySetView(): ReadonlySet<E>;
41
+ readonly __doNotUseOrImplementIt: {
42
+ readonly "kotlin.collections.KtSet": unique symbol;
43
+ };
44
+ }
45
+ export declare namespace KtSet {
46
+ function fromJsSet<E>(set: ReadonlySet<E>): KtSet<E>;
47
+ }
48
+ export declare abstract class Encoding {
49
+ private constructor();
50
+ static get BASE64(): Encoding & {
51
+ get name(): "BASE64";
52
+ get ordinal(): 0;
53
+ };
54
+ static get BASE64URL(): Encoding & {
55
+ get name(): "BASE64URL";
56
+ get ordinal(): 1;
57
+ };
58
+ static get BASE58BTC(): Encoding & {
59
+ get name(): "BASE58BTC";
60
+ get ordinal(): 2;
61
+ };
62
+ static get HEX(): Encoding & {
63
+ get name(): "HEX";
64
+ get ordinal(): 3;
65
+ };
66
+ static get UTF8(): Encoding & {
67
+ get name(): "UTF8";
68
+ get ordinal(): 4;
69
+ };
70
+ static values(): [typeof Encoding.BASE64, typeof Encoding.BASE64URL, typeof Encoding.BASE58BTC, typeof Encoding.HEX, typeof Encoding.UTF8];
71
+ static valueOf(value: string): Encoding;
72
+ get name(): "BASE64" | "BASE64URL" | "BASE58BTC" | "HEX" | "UTF8";
73
+ get ordinal(): 0 | 1 | 2 | 3 | 4;
74
+ }
75
+ export declare namespace Encoding {
76
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
77
+ namespace $metadata$ {
78
+ const constructor: abstract new () => Encoding;
79
+ }
80
+ }
81
+ export declare function decodeFromHex(_this_: string): Int8Array;
82
+ export declare function encodeToHex(_this_: Int8Array): string;
83
+ export declare function encodeToBase58Btc(_this_: Int8Array): string;
84
+ export declare function decodeFromBase58Btc(_this_: string): Int8Array;
85
+ export declare function decodeFromBase64Url(_this_: string): Int8Array;
86
+ export declare function encodeToBase64Url(_this_: Int8Array): string;
87
+ export declare function encodeToBase64(_this_: Int8Array, urlSafe?: boolean): string;
88
+ export declare function decodeFromBase64(_this_: string, urlSafe?: boolean): Int8Array;
89
+ export declare function decodeFrom(_this_: string, encoding: Encoding): Int8Array;
90
+ export declare function encodeTo(_this_: Int8Array, encoding: Encoding): string;
91
+ export declare function decodeUrlGraph(_this_: string): string;
92
+ export declare function encodeUrlGraph(_this_: string): string;
93
+ export declare class IdkResult<V, E> {
94
+ private constructor();
95
+ get isOk(): boolean;
96
+ get isErr(): boolean;
97
+ get value(): V;
98
+ get error(): E;
99
+ component1(): Nullable<V>;
100
+ component2(): Nullable<E>;
101
+ toString(): string;
102
+ onSuccess(action: (p0: V) => void): IdkResult<V, E>;
103
+ onFailure(action: (p0: E) => void): IdkResult<V, E>;
104
+ map<R>(transform: (p0: V) => R): IdkResult<R, E>;
105
+ mapError<F>(transform: (p0: E) => F): IdkResult<V, F>;
106
+ flatMap<R>(transform: (p0: V) => IdkResult<R, E>): IdkResult<R, E>;
107
+ andThen<R>(transform: (p0: V) => IdkResult<R, E>): IdkResult<R, E>;
108
+ recover(transform: (p0: E) => V): IdkResult<V, E>;
109
+ getOr(defaultValue: V): V;
110
+ getOrElse(transform: (p0: E) => V): V;
111
+ fold<R>(success: (p0: V) => R, failure: (p0: E) => R): R;
112
+ mapBoth<R>(success: (p0: V) => R, failure: (p0: E) => R): R;
113
+ get(): Nullable<V>;
114
+ getErrorOrNull(): Nullable<E>;
115
+ getOrNull(): Nullable<V>;
116
+ errorOrNull(): Nullable<E>;
117
+ getOrThrow(): V;
118
+ }
119
+ export declare namespace IdkResult {
120
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
121
+ namespace $metadata$ {
122
+ const constructor: abstract new <V, E>() => IdkResult<V, E>;
123
+ }
124
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
125
+ private constructor();
126
+ }
127
+ namespace Companion {
128
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
129
+ namespace $metadata$ {
130
+ abstract class constructor {
131
+ ok<V, E>(value: V): IdkResult<V, E>;
132
+ err<V, E>(error: E): IdkResult<V, E>;
133
+ private constructor();
134
+ }
135
+ }
136
+ }
137
+ }
138
+ export declare class Ok<V> extends IdkResult.$metadata$.constructor<V, never> {
139
+ constructor(_value: V);
140
+ get value(): V;
141
+ asResult<E>(): IdkResult<V, E>;
142
+ toString(): string;
143
+ equals(other: Nullable<any>): boolean;
144
+ hashCode(): number;
145
+ }
146
+ export declare namespace Ok {
147
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
148
+ namespace $metadata$ {
149
+ const constructor: abstract new <V>() => Ok<V>;
150
+ }
151
+ }
152
+ export declare class Err<E> extends IdkResult.$metadata$.constructor<never, E> {
153
+ constructor(_error: E);
154
+ get error(): E;
155
+ asResult<V>(): IdkResult<V, E>;
156
+ toString(): string;
157
+ equals(other: Nullable<any>): boolean;
158
+ hashCode(): number;
159
+ }
160
+ export declare namespace Err {
161
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
162
+ namespace $metadata$ {
163
+ const constructor: abstract new <E>() => Err<E>;
164
+ }
165
+ }
166
+ export declare function IdkIsOk<V, E>(result: IdkResult<V, E>): boolean;
167
+ export declare function IdkIsErr<V, E>(result: IdkResult<V, E>): boolean;
168
+ export declare function IdkGetOrNull<V, E>(result: IdkResult<V, E>): Nullable<V>;
169
+ export declare function IdkErrorOrNull<V, E>(result: IdkResult<V, E>): Nullable<E>;
170
+ export declare function IdkOkResult<V>(value: V): IdkResult<V, never>;
171
+ export declare function IdkErrorResult<E extends IdkErrorType>(error: E): IdkResult<never, E>;
172
+ export declare interface IdkErrorType {
173
+ readonly code: string;
174
+ readonly message: IdkError.Message;
175
+ readonly severity: IdkError.Severity;
176
+ readonly exception: Nullable<Error>;
177
+ readonly causes: KtList<IdkErrorType>;
178
+ readonly meta: KtMap<string, Nullable<any>>;
179
+ readonly __doNotUseOrImplementIt: {
180
+ readonly "com.sphereon.core.api.error.IdkErrorType": unique symbol;
181
+ };
182
+ }
183
+ export declare class IdkError implements IdkErrorType {
184
+ constructor(code: string, message: IdkError.Message, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, meta?: KtMap<string, Nullable<any>>, exception?: Nullable<Error>);
185
+ get code(): string;
186
+ get message(): IdkError.Message;
187
+ get severity(): IdkError.Severity;
188
+ get causes(): KtList<IdkErrorType>;
189
+ get meta(): KtMap<string, Nullable<any>>;
190
+ get exception(): Nullable<Error>;
191
+ hasException(): boolean;
192
+ hasCauses(): boolean;
193
+ hasMeta(): boolean;
194
+ addCause(cause: IdkError): IdkError;
195
+ toString(): string;
196
+ static fromDTO(error: IdkErrorType): IdkError;
197
+ static fromString(message: string, code?: string, exception?: Nullable<Error>/* Nullable<Exception> */, i18nKey?: string, severity?: IdkError.Severity): IdkError;
198
+ static fromDefinition(definition: ErrorDefinitionType, i18nParams?: KtMap<string, Nullable<any>>, causes?: KtList<IdkError>, meta?: KtMap<string, Nullable<any>>, severity?: IdkError.Severity, exception?: Nullable<Error>): IdkError;
199
+ static UNKNOWN_ERROR(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, message?: string, exception?: Nullable<Error>): IdkError;
200
+ static ILLEGAL_ARGUMENT_ERROR(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, arg?: Nullable<any>, message?: string, throwable?: Nullable<Error>): IdkError;
201
+ static COMMAND_ARG_NOT_SUPPORTED_ERROR(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, command?: Nullable<any>/* Nullable<BaseCommand<UnknownType *, UnknownType *, UnknownType *>> */, arg?: Nullable<any>, message?: string, throwable?: Nullable<Error>): IdkError;
202
+ static NOT_FOUND_ERROR(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, resource?: Nullable<string>, message?: string, throwable?: Nullable<Error>): IdkError;
203
+ static COMMAND_DISABLED_ERROR(commandId: string, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, throwable?: Nullable<Error>): IdkError;
204
+ static COMMAND_SKIPPED_ERROR(commandId: string, reason?: Nullable<string>, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, throwable?: Nullable<Error>): IdkError;
205
+ static COMMAND_NOT_AUTHORIZED_ERROR(commandId: string, reason: string, actor?: Nullable<string>, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, throwable?: Nullable<Error>): IdkError;
206
+ static ALL_HANDLERS_FAILED_ERROR(errors: KtList<IdkError>, severity?: IdkError.Severity, throwable?: Nullable<Error>): IdkError;
207
+ static UNAUTHORIZED_ERROR(message?: string, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, throwable?: Nullable<Error>): IdkError;
208
+ static FORBIDDEN_ERROR(message?: string, severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, throwable?: Nullable<Error>): IdkError;
209
+ static ALREADY_EXISTS_ERROR(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, resource?: Nullable<string>, message?: string, throwable?: Nullable<Error>): IdkError;
210
+ static INVALID_STATE(severity?: IdkError.Severity, causes?: KtList<IdkErrorType>, message?: string, throwable?: Nullable<Error>): IdkError;
211
+ readonly __doNotUseOrImplementIt: IdkErrorType["__doNotUseOrImplementIt"];
212
+ }
213
+ export declare namespace IdkError {
214
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
215
+ namespace $metadata$ {
216
+ const constructor: abstract new () => IdkError;
217
+ }
218
+ abstract class Severity {
219
+ private constructor();
220
+ static get INFO(): IdkError.Severity & {
221
+ get name(): "INFO";
222
+ get ordinal(): 0;
223
+ };
224
+ static get WARNING(): IdkError.Severity & {
225
+ get name(): "WARNING";
226
+ get ordinal(): 1;
227
+ };
228
+ static get ERROR(): IdkError.Severity & {
229
+ get name(): "ERROR";
230
+ get ordinal(): 2;
231
+ };
232
+ static get FATAL(): IdkError.Severity & {
233
+ get name(): "FATAL";
234
+ get ordinal(): 3;
235
+ };
236
+ static values(): [typeof IdkError.Severity.INFO, typeof IdkError.Severity.WARNING, typeof IdkError.Severity.ERROR, typeof IdkError.Severity.FATAL];
237
+ static valueOf(value: string): IdkError.Severity;
238
+ get name(): "INFO" | "WARNING" | "ERROR" | "FATAL";
239
+ get ordinal(): 0 | 1 | 2 | 3;
240
+ get value(): number;
241
+ isAtLeast(severity: IdkError.Severity): boolean;
242
+ isAtMost(severity: IdkError.Severity): boolean;
243
+ }
244
+ namespace Severity {
245
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
246
+ namespace $metadata$ {
247
+ const constructor: abstract new () => Severity;
248
+ }
249
+ }
250
+ class Message {
251
+ constructor(i18nKey: string, i18nParams: KtMap<string, Nullable<any>> | undefined, defaultMessage: string);
252
+ get i18nKey(): string;
253
+ get i18nParams(): KtMap<string, Nullable<any>>;
254
+ get defaultMessage(): string;
255
+ copy(i18nKey?: string, i18nParams?: KtMap<string, Nullable<any>>, defaultMessage?: string): IdkError.Message;
256
+ toString(): string;
257
+ hashCode(): number;
258
+ equals(other: Nullable<any>): boolean;
259
+ }
260
+ namespace Message {
261
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
262
+ namespace $metadata$ {
263
+ const constructor: abstract new () => Message;
264
+ }
265
+ }
266
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
267
+ private constructor();
268
+ }
269
+ namespace Companion {
270
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
271
+ namespace $metadata$ {
272
+ abstract class constructor {
273
+ private constructor();
274
+ }
275
+ }
276
+ }
277
+ }
278
+ export declare interface ErrorDefinitionType {
279
+ readonly code: string;
280
+ readonly i18nKey: string;
281
+ readonly defaultMessage: string;
282
+ readonly severity: IdkError.Severity;
283
+ asError(i18nParams?: KtMap<string, Nullable<any>>, exception?: Nullable<Error>, causes?: KtList<IdkError>, meta?: KtMap<string, Nullable<any>>, severity?: IdkError.Severity): IdkError;
284
+ asResult(i18nParams?: KtMap<string, Nullable<any>>, exception?: Nullable<Error>, causes?: KtList<IdkError>, meta?: KtMap<string, Nullable<any>>, severity?: IdkError.Severity): IdkResult<never, IdkError>;
285
+ readonly __doNotUseOrImplementIt: {
286
+ readonly "com.sphereon.core.api.error.ErrorDefinitionType": unique symbol;
287
+ };
288
+ }
289
+ export declare const jsonSerializer: {
290
+ get(): any/* Json */;
291
+ };
292
+ export declare abstract class JsonSupport {
293
+ static readonly getInstance: () => typeof JsonSupport.$metadata$.type;
294
+ private constructor();
295
+ }
296
+ export declare namespace JsonSupport {
297
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
298
+ namespace $metadata$ {
299
+ abstract class type extends KtSingleton<constructor>() {
300
+ private constructor();
301
+ }
302
+ abstract class constructor {
303
+ register(registrationId: Nullable<string> | undefined, block: (p0: any/* SerializersModuleBuilder */) => void): void;
304
+ get module(): any/* SerializersModule */;
305
+ get serializer(): any/* Json */;
306
+ private constructor();
307
+ }
308
+ }
309
+ }
310
+ export declare abstract class LogOutputFormat {
311
+ private constructor();
312
+ static get TEXT(): LogOutputFormat & {
313
+ get name(): "TEXT";
314
+ get ordinal(): 0;
315
+ };
316
+ static get JSON(): LogOutputFormat & {
317
+ get name(): "JSON";
318
+ get ordinal(): 1;
319
+ };
320
+ static values(): [typeof LogOutputFormat.TEXT, typeof LogOutputFormat.JSON];
321
+ static valueOf(value: string): LogOutputFormat;
322
+ get name(): "TEXT" | "JSON";
323
+ get ordinal(): 0 | 1;
324
+ }
325
+ export declare namespace LogOutputFormat {
326
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
327
+ namespace $metadata$ {
328
+ const constructor: abstract new () => LogOutputFormat;
329
+ }
330
+ }
331
+ export declare class LogMessage {
332
+ constructor(level: LogLevel | undefined, message: string, tag?: Nullable<string>, exception?: Nullable<Error>, errorResult?: Nullable<IdkResult<never, any /*UnknownType **/>>, metadata?: Nullable<KtMap<string, string>>, timestamp?: bigint);
333
+ get level(): LogLevel;
334
+ get message(): string;
335
+ get tag(): Nullable<string>;
336
+ get exception(): Nullable<Error>;
337
+ get errorResult(): Nullable<IdkResult<never, any /*UnknownType **/>>;
338
+ get metadata(): Nullable<KtMap<string, string>>;
339
+ get timestamp(): bigint;
340
+ copy(level?: LogLevel, message?: string, tag?: Nullable<string>, exception?: Nullable<Error>, errorResult?: Nullable<IdkResult<never, any /*UnknownType **/>>, metadata?: Nullable<KtMap<string, string>>, timestamp?: bigint): LogMessage;
341
+ toString(): string;
342
+ hashCode(): number;
343
+ equals(other: Nullable<any>): boolean;
344
+ }
345
+ export declare namespace LogMessage {
346
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
347
+ namespace $metadata$ {
348
+ const constructor: abstract new () => LogMessage;
349
+ }
350
+ }
351
+ export declare abstract class LogLevel {
352
+ private constructor();
353
+ static get TRACE(): LogLevel & {
354
+ get name(): "TRACE";
355
+ get ordinal(): 0;
356
+ };
357
+ static get DEBUG(): LogLevel & {
358
+ get name(): "DEBUG";
359
+ get ordinal(): 1;
360
+ };
361
+ static get INFO(): LogLevel & {
362
+ get name(): "INFO";
363
+ get ordinal(): 2;
364
+ };
365
+ static get WARN(): LogLevel & {
366
+ get name(): "WARN";
367
+ get ordinal(): 3;
368
+ };
369
+ static get ERROR(): LogLevel & {
370
+ get name(): "ERROR";
371
+ get ordinal(): 4;
372
+ };
373
+ static get OFF(): LogLevel & {
374
+ get name(): "OFF";
375
+ get ordinal(): 5;
376
+ };
377
+ static values(): [typeof LogLevel.TRACE, typeof LogLevel.DEBUG, typeof LogLevel.INFO, typeof LogLevel.WARN, typeof LogLevel.ERROR, typeof LogLevel.OFF];
378
+ static valueOf(value: string): LogLevel;
379
+ get name(): "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "OFF";
380
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
381
+ get value(): number;
382
+ toString(): string;
383
+ }
384
+ export declare namespace LogLevel {
385
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
386
+ namespace $metadata$ {
387
+ const constructor: abstract new () => LogLevel;
388
+ }
389
+ }
390
+ export declare class LoggerConfig {
391
+ constructor(minLevel?: LogLevel, tag?: string, outputFormat?: LogOutputFormat, includeTimestamp?: boolean);
392
+ get minLevel(): LogLevel;
393
+ get tag(): string;
394
+ get outputFormat(): LogOutputFormat;
395
+ get includeTimestamp(): boolean;
396
+ isEnabled(level: LogLevel): boolean;
397
+ disable(): LoggerConfig;
398
+ copy(minLevel?: LogLevel, tag?: string, outputFormat?: LogOutputFormat, includeTimestamp?: boolean): LoggerConfig;
399
+ toString(): string;
400
+ hashCode(): number;
401
+ equals(other: Nullable<any>): boolean;
402
+ static get Disabled(): LoggerConfig;
403
+ static get Debug(): LoggerConfig;
404
+ static get Default(): LoggerConfig;
405
+ static get JsonWithTimestamp(): LoggerConfig;
406
+ }
407
+ export declare namespace LoggerConfig {
408
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
409
+ namespace $metadata$ {
410
+ const constructor: abstract new () => LoggerConfig;
411
+ }
412
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
413
+ private constructor();
414
+ }
415
+ namespace Companion {
416
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
417
+ namespace $metadata$ {
418
+ abstract class constructor {
419
+ private constructor();
420
+ }
421
+ }
422
+ }
423
+ }
424
+ export declare interface BaseChainCommand<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> /* extends BaseCommand<Arg, SuccessResult, ErrorResult> */ {
425
+ readonly next: Nullable<any>/* Nullable<BaseCommand<Arg, SuccessResult, ErrorResult>> */;
426
+ readonly config: IChainCommandConfig;
427
+ readonly __doNotUseOrImplementIt: {
428
+ readonly "com.sphereon.core.api.session.BaseChainCommand": unique symbol;
429
+ };
430
+ }
431
+ export declare interface IChainCommandConfig {
432
+ readonly minExecutions: number;
433
+ readonly maxExecutions: Nullable<number>;
434
+ readonly __doNotUseOrImplementIt: {
435
+ readonly "com.sphereon.core.api.session.IChainCommandConfig": unique symbol;
436
+ };
437
+ }
438
+ export declare interface BasePipelineCommand<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> /* extends BaseCommand<Arg, SuccessResult, ErrorResult> */ {
439
+ readonly commands: KtMutableList<any/* BaseCommand<UnknownType *, UnknownType *, UnknownType *> */>;
440
+ addCommand(filter: any/* BaseCommand<UnknownType *, UnknownType *, UnknownType *> */): BasePipelineCommand<Arg, SuccessResult, ErrorResult>;
441
+ removeCommand(filter: any/* BaseCommand<UnknownType *, UnknownType *, UnknownType *> */): BasePipelineCommand<Arg, SuccessResult, ErrorResult>;
442
+ readonly __doNotUseOrImplementIt: {
443
+ readonly "com.sphereon.core.api.session.BasePipelineCommand": unique symbol;
444
+ };
445
+ }
446
+ export declare interface Command<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> /* extends HasId, BaseCommand<Arg, SuccessResult, ErrorResult> */ {
447
+ readonly isEnabled: boolean;
448
+ readonly subsystem: any/* EventSubsystem */;
449
+ readonly __doNotUseOrImplementIt: {
450
+ readonly "com.sphereon.core.api.session.Command": unique symbol;
451
+ };
452
+ }
453
+ export declare interface ChainCommand<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> extends Command<Arg, SuccessResult, ErrorResult>, BaseChainCommand<Arg, SuccessResult, ErrorResult> {
454
+ readonly __doNotUseOrImplementIt: {
455
+ readonly "com.sphereon.core.api.session.ChainCommand": unique symbol;
456
+ } & BaseChainCommand<any, any, any>["__doNotUseOrImplementIt"] & Command<any, any, any>["__doNotUseOrImplementIt"];
457
+ }
458
+ export declare interface PipelineCommand<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> extends Command<Arg, SuccessResult, ErrorResult>, BasePipelineCommand<Arg, SuccessResult, ErrorResult> {
459
+ readonly __doNotUseOrImplementIt: {
460
+ readonly "com.sphereon.core.api.session.PipelineCommand": unique symbol;
461
+ } & BasePipelineCommand<any, any, any>["__doNotUseOrImplementIt"] & Command<any, any, any>["__doNotUseOrImplementIt"];
462
+ }
463
+ export declare interface MultiService<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> extends PipelineCommand<Arg, SuccessResult, ErrorResult> {
464
+ readonly commands: KtMutableList<Command<Arg, SuccessResult, ErrorResult>>;
465
+ hasId(id: string): boolean;
466
+ getById(id: string): Nullable<Command<Arg, SuccessResult, ErrorResult>>;
467
+ readonly __doNotUseOrImplementIt: {
468
+ readonly "com.sphereon.core.api.session.MultiService": unique symbol;
469
+ } & PipelineCommand<any, any, any>["__doNotUseOrImplementIt"];
470
+ }
471
+ export declare interface ICommandInitExtension<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> {
472
+ beforeInit(service: Command<Arg, SuccessResult, ErrorResult>): void;
473
+ afterInit(service: Command<Arg, SuccessResult, ErrorResult>): void;
474
+ readonly __doNotUseOrImplementIt: {
475
+ readonly "com.sphereon.core.api.session.ICommandInitExtension": unique symbol;
476
+ };
477
+ }
478
+ export declare abstract class CommandExecutionPhase {
479
+ private constructor();
480
+ static get BEFORE(): CommandExecutionPhase & {
481
+ get name(): "BEFORE";
482
+ get ordinal(): 0;
483
+ };
484
+ static get DURING(): CommandExecutionPhase & {
485
+ get name(): "DURING";
486
+ get ordinal(): 1;
487
+ };
488
+ static get AFTER(): CommandExecutionPhase & {
489
+ get name(): "AFTER";
490
+ get ordinal(): 2;
491
+ };
492
+ static values(): [typeof CommandExecutionPhase.BEFORE, typeof CommandExecutionPhase.DURING, typeof CommandExecutionPhase.AFTER];
493
+ static valueOf(value: string): CommandExecutionPhase;
494
+ get name(): "BEFORE" | "DURING" | "AFTER";
495
+ get ordinal(): 0 | 1 | 2;
496
+ }
497
+ export declare namespace CommandExecutionPhase {
498
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
499
+ namespace $metadata$ {
500
+ const constructor: abstract new () => CommandExecutionPhase;
501
+ }
502
+ }
503
+ export declare interface ICommandExecutionExtension<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> {
504
+ beforeExecute(service: Command<Arg, SuccessResult, ErrorResult>, args: Arg): void;
505
+ duringExecute(service: Command<Arg, SuccessResult, ErrorResult>, args: Arg): Arg;
506
+ afterExecute(service: Command<Arg, SuccessResult, ErrorResult>, args: Arg, result: IdkResult<SuccessResult, ErrorResult>): void;
507
+ readonly __doNotUseOrImplementIt: {
508
+ readonly "com.sphereon.core.api.session.ICommandExecutionExtension": unique symbol;
509
+ };
510
+ }
511
+ export declare interface ICommandExecutionListener<Arg extends any, SuccessResult extends any, ErrorResult extends IdkErrorType> {
512
+ onBeforeExecute(serviceId: string, args: Arg): void;
513
+ onDuringExecute(serviceId: string, args: Arg): Arg;
514
+ onAfterExecute(serviceId: string, args: Arg, result: IdkResult<SuccessResult, ErrorResult>): void;
515
+ readonly __doNotUseOrImplementIt: {
516
+ readonly "com.sphereon.core.api.session.ICommandExecutionListener": unique symbol;
517
+ };
518
+ }
519
+ export declare function kmpListOf<T>(elements: Array<T>): KtList<T>;
520
+ export declare function kmpSetOf<T>(elements: Array<T>): KtSet<T>;
521
+ export declare function kmpMapOf<K, V>(): KtMutableMap<K, V>;
522
+ export declare class LocalDateTimeKMP /* implements Comparable<LocalDateTimeKMP> */ {
523
+ constructor(year: number, month: number, day: number, hour: number, minute: number, second?: number, nanosecond?: number);
524
+ get year(): number;
525
+ get month(): number;
526
+ get day(): number;
527
+ get hour(): number;
528
+ get minute(): number;
529
+ get second(): number;
530
+ get nanosecond(): number;
531
+ toMdocTdateString(): string;
532
+ toString(): string;
533
+ toEpochSeconds(timeZoneId?: Nullable<string>): bigint;
534
+ toInstant(utils?: DateTimeUtils, timeZoneId?: Nullable<string>): any/* Instant */;
535
+ static now(): LocalDateTimeKMP;
536
+ static nowWithTimezone(utils?: DateTimeUtils, timeZoneId?: Nullable<string>): LocalDateTimeKMP;
537
+ static fromString(value: string): LocalDateTimeKMP;
538
+ }
539
+ export declare namespace LocalDateTimeKMP {
540
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
541
+ namespace $metadata$ {
542
+ const constructor: abstract new () => LocalDateTimeKMP;
543
+ }
544
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
545
+ private constructor();
546
+ }
547
+ namespace Companion {
548
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
549
+ namespace $metadata$ {
550
+ abstract class constructor {
551
+ private constructor();
552
+ }
553
+ }
554
+ }
555
+ }
556
+ export declare class DateTimeUtils {
557
+ constructor(clock?: any/* Clock */, timeZoneId?: string);
558
+ get clock(): any/* Clock */;
559
+ set clock(value: any/* Clock */);
560
+ get timeZoneId(): string;
561
+ set timeZoneId(value: string);
562
+ epochSeconds(): number;
563
+ dateTimeUTC(epochSeconds?: Nullable<number>): LocalDateTimeKMP;
564
+ dateTimeLocal(epochSeconds?: Nullable<number>): LocalDateTimeKMP;
565
+ dateTime(timeZoneId?: Nullable<string>, epochSeconds?: Nullable<number>): LocalDateTimeKMP;
566
+ dateLocalISO(epochSeconds?: Nullable<number>): string;
567
+ dateISO(timeZoneId: Nullable<string>, epochSeconds?: Nullable<number>): string;
568
+ timeZone(timeZoneId: Nullable<string>): any/* TimeZone */;
569
+ static get DEFAULTS(): DateTimeUtils;
570
+ }
571
+ export declare namespace DateTimeUtils {
572
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
573
+ namespace $metadata$ {
574
+ const constructor: abstract new () => DateTimeUtils;
575
+ }
576
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
577
+ private constructor();
578
+ }
579
+ namespace Companion {
580
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
581
+ namespace $metadata$ {
582
+ abstract class constructor {
583
+ private constructor();
584
+ }
585
+ }
586
+ }
587
+ }
588
+ export declare abstract class DateTimeUtilsDefault {
589
+ static readonly getInstance: () => typeof DateTimeUtilsDefault.$metadata$.type;
590
+ private constructor();
591
+ }
592
+ export declare namespace DateTimeUtilsDefault {
593
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
594
+ namespace $metadata$ {
595
+ abstract class type extends KtSingleton<constructor>() {
596
+ private constructor();
597
+ }
598
+ abstract class constructor {
599
+ get INSTANCE(): DateTimeUtils;
600
+ private constructor();
601
+ }
602
+ }
603
+ }
604
+ export declare abstract class Uuid {
605
+ static readonly getInstance: () => typeof Uuid.$metadata$.type;
606
+ private constructor();
607
+ }
608
+ export declare namespace Uuid {
609
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
610
+ namespace $metadata$ {
611
+ abstract class type extends KtSingleton<constructor>() {
612
+ private constructor();
613
+ }
614
+ abstract class constructor {
615
+ v4(): any/* Uuid */;
616
+ v4String(): string;
617
+ private constructor();
618
+ }
619
+ }
620
+ }
621
+ export declare class TenantContextDataImpl implements TenantContextData {
622
+ constructor(tenantId: string);
623
+ get tenantId(): string;
624
+ toString(): string;
625
+ equals(other: Nullable<any>): boolean;
626
+ hashCode(): number;
627
+ readonly __doNotUseOrImplementIt: TenantContextData["__doNotUseOrImplementIt"];
628
+ }
629
+ export declare namespace TenantContextDataImpl {
630
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
631
+ namespace $metadata$ {
632
+ const constructor: abstract new () => TenantContextDataImpl;
633
+ }
634
+ }
635
+ export declare interface UserContext extends TenantAware, PrincipalAware {
636
+ readonly id: string;
637
+ readonly secureDetails: Nullable<SecuredTenantContextDetails>;
638
+ readonly __doNotUseOrImplementIt: {
639
+ readonly "com.sphereon.di.context.UserContext": unique symbol;
640
+ } & PrincipalAware["__doNotUseOrImplementIt"] & TenantAware["__doNotUseOrImplementIt"];
641
+ }
642
+ export declare namespace UserContext {
643
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
644
+ private constructor();
645
+ }
646
+ namespace Companion {
647
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
648
+ namespace $metadata$ {
649
+ abstract class constructor {
650
+ get BACKGROUND_SERVICE(): string;
651
+ get ANONYMOUS(): string;
652
+ private constructor();
653
+ }
654
+ }
655
+ }
656
+ }
657
+ export declare interface SecuredTenantContextDetails {
658
+ readonly validFrom: bigint;
659
+ readonly validUntil: bigint;
660
+ readonly iss: string;
661
+ readonly jwt: string;
662
+ readonly __doNotUseOrImplementIt: {
663
+ readonly "com.sphereon.di.context.SecuredTenantContextDetails": unique symbol;
664
+ };
665
+ }
666
+ export declare interface UserSecuredContext extends UserContext {
667
+ readonly secureDetails: SecuredTenantContextDetails;
668
+ readonly __doNotUseOrImplementIt: {
669
+ readonly "com.sphereon.di.context.UserSecuredContext": unique symbol;
670
+ } & UserContext["__doNotUseOrImplementIt"];
671
+ }
672
+ export declare interface ContextAware {
673
+ readonly context: UserContext;
674
+ readonly __doNotUseOrImplementIt: {
675
+ readonly "com.sphereon.di.context.ContextAware": unique symbol;
676
+ };
677
+ }
678
+ export declare interface TenantAware {
679
+ readonly tenant: TenantContextData;
680
+ readonly __doNotUseOrImplementIt: {
681
+ readonly "com.sphereon.di.context.TenantAware": unique symbol;
682
+ };
683
+ }
684
+ export declare interface PrincipalAware {
685
+ readonly principal: Nullable<any>;
686
+ readonly __doNotUseOrImplementIt: {
687
+ readonly "com.sphereon.di.context.PrincipalAware": unique symbol;
688
+ };
689
+ }
690
+ export declare interface TenantContextData {
691
+ readonly tenantId: string;
692
+ readonly __doNotUseOrImplementIt: {
693
+ readonly "com.sphereon.di.context.TenantContextData": unique symbol;
694
+ };
695
+ }
696
+ export declare abstract class UserScope {
697
+ }
698
+ export declare namespace UserScope {
699
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
700
+ namespace $metadata$ {
701
+ const constructor: abstract new () => UserScope;
702
+ }
703
+ }
704
+ export declare interface ISessionContextAware {
705
+ readonly sessionContext: ContextAware/* SessionContext */;
706
+ readonly __doNotUseOrImplementIt: {
707
+ readonly "com.sphereon.di.session.ISessionContextAware": unique symbol;
708
+ };
709
+ }
710
+ export declare abstract class SessionScope {
711
+ }
712
+ export declare namespace SessionScope {
713
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
714
+ namespace $metadata$ {
715
+ const constructor: abstract new () => SessionScope;
716
+ }
717
+ }
718
+ export declare interface PromptRegistry {
719
+ validatePairing(request: PromptRequest, response: PromptResponse): Nullable<string>;
720
+ isRequestTypeRegistered(request: PromptRequest): boolean;
721
+ getExpectedResponseType(request: PromptRequest): Nullable<string>;
722
+ readonly __doNotUseOrImplementIt: {
723
+ readonly "com.sphereon.ui.prompt.coordinator.PromptRegistry": unique symbol;
724
+ };
725
+ }
726
+ export declare abstract class CancelReason {
727
+ private constructor();
728
+ static get USER(): CancelReason & {
729
+ get name(): "USER";
730
+ get ordinal(): 0;
731
+ };
732
+ static get SUPERSEDED(): CancelReason & {
733
+ get name(): "SUPERSEDED";
734
+ get ordinal(): 1;
735
+ };
736
+ static get BACKGROUND(): CancelReason & {
737
+ get name(): "BACKGROUND";
738
+ get ordinal(): 2;
739
+ };
740
+ static get SYSTEM(): CancelReason & {
741
+ get name(): "SYSTEM";
742
+ get ordinal(): 3;
743
+ };
744
+ static values(): [typeof CancelReason.USER, typeof CancelReason.SUPERSEDED, typeof CancelReason.BACKGROUND, typeof CancelReason.SYSTEM];
745
+ static valueOf(value: string): CancelReason;
746
+ get name(): "USER" | "SUPERSEDED" | "BACKGROUND" | "SYSTEM";
747
+ get ordinal(): 0 | 1 | 2 | 3;
748
+ }
749
+ export declare namespace CancelReason {
750
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
751
+ namespace $metadata$ {
752
+ const constructor: abstract new () => CancelReason;
753
+ }
754
+ }
755
+ export declare class PromptPresentationHint {
756
+ constructor(priority?: PromptPriority, deferUntilForeground?: boolean, timeout?: Nullable<any>/* Nullable<Duration> */, dismissOnBackground?: boolean, showOverLockScreen?: boolean);
757
+ get priority(): PromptPriority;
758
+ get deferUntilForeground(): boolean;
759
+ get timeout(): Nullable<any>/* Nullable<Duration> */;
760
+ get dismissOnBackground(): boolean;
761
+ get showOverLockScreen(): boolean;
762
+ copy(priority?: PromptPriority, deferUntilForeground?: boolean, timeout?: Nullable<any>/* Nullable<Duration> */, dismissOnBackground?: boolean, showOverLockScreen?: boolean): PromptPresentationHint;
763
+ toString(): string;
764
+ hashCode(): number;
765
+ equals(other: Nullable<any>): boolean;
766
+ }
767
+ export declare namespace PromptPresentationHint {
768
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
769
+ namespace $metadata$ {
770
+ const constructor: abstract new () => PromptPresentationHint;
771
+ }
772
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
773
+ private constructor();
774
+ }
775
+ namespace Companion {
776
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
777
+ namespace $metadata$ {
778
+ abstract class constructor {
779
+ get DEFAULT(): PromptPresentationHint;
780
+ get CRITICAL(): PromptPresentationHint;
781
+ get DEFERRED(): PromptPresentationHint;
782
+ private constructor();
783
+ }
784
+ }
785
+ }
786
+ }
787
+ export declare abstract class PromptPriority {
788
+ private constructor();
789
+ static get CRITICAL(): PromptPriority & {
790
+ get name(): "CRITICAL";
791
+ get ordinal(): 0;
792
+ };
793
+ static get HIGH(): PromptPriority & {
794
+ get name(): "HIGH";
795
+ get ordinal(): 1;
796
+ };
797
+ static get NORMAL(): PromptPriority & {
798
+ get name(): "NORMAL";
799
+ get ordinal(): 2;
800
+ };
801
+ static get LOW(): PromptPriority & {
802
+ get name(): "LOW";
803
+ get ordinal(): 3;
804
+ };
805
+ static get BACKGROUND(): PromptPriority & {
806
+ get name(): "BACKGROUND";
807
+ get ordinal(): 4;
808
+ };
809
+ static values(): [typeof PromptPriority.CRITICAL, typeof PromptPriority.HIGH, typeof PromptPriority.NORMAL, typeof PromptPriority.LOW, typeof PromptPriority.BACKGROUND];
810
+ static valueOf(value: string): PromptPriority;
811
+ get name(): "CRITICAL" | "HIGH" | "NORMAL" | "LOW" | "BACKGROUND";
812
+ get ordinal(): 0 | 1 | 2 | 3 | 4;
813
+ get order(): number;
814
+ isHigherThan(other: PromptPriority): boolean;
815
+ isAtLeast(other: PromptPriority): boolean;
816
+ }
817
+ export declare namespace PromptPriority {
818
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
819
+ namespace $metadata$ {
820
+ const constructor: abstract new () => PromptPriority;
821
+ }
822
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
823
+ private constructor();
824
+ }
825
+ namespace Companion {
826
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
827
+ namespace $metadata$ {
828
+ abstract class constructor {
829
+ sortedByPriority(): KtList<PromptPriority>;
830
+ private constructor();
831
+ }
832
+ }
833
+ }
834
+ }
835
+ export declare interface PromptRequest {
836
+ readonly id: any/* PromptId */;
837
+ readonly presentationHint: PromptPresentationHint;
838
+ readonly __doNotUseOrImplementIt: {
839
+ readonly "com.sphereon.ui.prompt.core.PromptRequest": unique symbol;
840
+ };
841
+ }
842
+ export declare interface SinglePromptRequest extends PromptRequest {
843
+ readonly show: boolean;
844
+ readonly title: string;
845
+ readonly subtitle: Nullable<string>;
846
+ readonly __doNotUseOrImplementIt: {
847
+ readonly "com.sphereon.ui.prompt.core.SinglePromptRequest": unique symbol;
848
+ } & PromptRequest["__doNotUseOrImplementIt"];
849
+ }
850
+ export declare class NfcPromptRequest implements SinglePromptRequest {
851
+ constructor(id: any/* PromptId */ | undefined, title: string, subtitle: Nullable<string> | undefined, show: boolean | undefined, presentationHint: PromptPresentationHint | undefined, initialMessage: string, successMessage?: Nullable<string>, errorMessage?: Nullable<string>);
852
+ get id(): any/* PromptId */;
853
+ get title(): string;
854
+ get subtitle(): Nullable<string>;
855
+ get show(): boolean;
856
+ get presentationHint(): PromptPresentationHint;
857
+ get initialMessage(): string;
858
+ get successMessage(): Nullable<string>;
859
+ get errorMessage(): Nullable<string>;
860
+ copy(id?: any/* PromptId */, title?: string, subtitle?: Nullable<string>, show?: boolean, presentationHint?: PromptPresentationHint, initialMessage?: string, successMessage?: Nullable<string>, errorMessage?: Nullable<string>): NfcPromptRequest;
861
+ toString(): string;
862
+ hashCode(): number;
863
+ equals(other: Nullable<any>): boolean;
864
+ readonly __doNotUseOrImplementIt: SinglePromptRequest["__doNotUseOrImplementIt"];
865
+ }
866
+ export declare namespace NfcPromptRequest {
867
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
868
+ namespace $metadata$ {
869
+ const constructor: abstract new () => NfcPromptRequest;
870
+ }
871
+ }
872
+ export declare class BiometricPromptRequest implements SinglePromptRequest {
873
+ constructor(id: any/* PromptId */ | undefined, title: string, subtitle: Nullable<string> | undefined, show: boolean | undefined, presentationHint: PromptPresentationHint | undefined, reason: string, fallbackToPasscode?: boolean);
874
+ get id(): any/* PromptId */;
875
+ get title(): string;
876
+ get subtitle(): Nullable<string>;
877
+ get show(): boolean;
878
+ get presentationHint(): PromptPresentationHint;
879
+ get reason(): string;
880
+ get fallbackToPasscode(): boolean;
881
+ copy(id?: any/* PromptId */, title?: string, subtitle?: Nullable<string>, show?: boolean, presentationHint?: PromptPresentationHint, reason?: string, fallbackToPasscode?: boolean): BiometricPromptRequest;
882
+ toString(): string;
883
+ hashCode(): number;
884
+ equals(other: Nullable<any>): boolean;
885
+ readonly __doNotUseOrImplementIt: SinglePromptRequest["__doNotUseOrImplementIt"];
886
+ }
887
+ export declare namespace BiometricPromptRequest {
888
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
889
+ namespace $metadata$ {
890
+ const constructor: abstract new () => BiometricPromptRequest;
891
+ }
892
+ }
893
+ export declare class BiometricUnlockPromptRequest implements SinglePromptRequest {
894
+ constructor(id: any/* PromptId */ | undefined, title: string, subtitle: Nullable<string> | undefined, show: boolean | undefined, presentationHint: PromptPresentationHint | undefined, keyId: string, reason: string, fallbackToPasscode?: boolean);
895
+ get id(): any/* PromptId */;
896
+ get title(): string;
897
+ get subtitle(): Nullable<string>;
898
+ get show(): boolean;
899
+ get presentationHint(): PromptPresentationHint;
900
+ get keyId(): string;
901
+ get reason(): string;
902
+ get fallbackToPasscode(): boolean;
903
+ copy(id?: any/* PromptId */, title?: string, subtitle?: Nullable<string>, show?: boolean, presentationHint?: PromptPresentationHint, keyId?: string, reason?: string, fallbackToPasscode?: boolean): BiometricUnlockPromptRequest;
904
+ toString(): string;
905
+ hashCode(): number;
906
+ equals(other: Nullable<any>): boolean;
907
+ readonly __doNotUseOrImplementIt: SinglePromptRequest["__doNotUseOrImplementIt"];
908
+ }
909
+ export declare namespace BiometricUnlockPromptRequest {
910
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
911
+ namespace $metadata$ {
912
+ const constructor: abstract new () => BiometricUnlockPromptRequest;
913
+ }
914
+ }
915
+ export declare class PassphrasePromptRequest implements SinglePromptRequest {
916
+ constructor(id: any/* PromptId */ | undefined, title: string, subtitle: Nullable<string> | undefined, show: boolean | undefined, presentationHint: PromptPresentationHint | undefined, purpose: string, minLength?: number, maxLength?: Nullable<number>, isNumericOnly?: boolean);
917
+ get id(): any/* PromptId */;
918
+ get title(): string;
919
+ get subtitle(): Nullable<string>;
920
+ get show(): boolean;
921
+ get presentationHint(): PromptPresentationHint;
922
+ get purpose(): string;
923
+ get minLength(): number;
924
+ get maxLength(): Nullable<number>;
925
+ get isNumericOnly(): boolean;
926
+ copy(id?: any/* PromptId */, title?: string, subtitle?: Nullable<string>, show?: boolean, presentationHint?: PromptPresentationHint, purpose?: string, minLength?: number, maxLength?: Nullable<number>, isNumericOnly?: boolean): PassphrasePromptRequest;
927
+ toString(): string;
928
+ hashCode(): number;
929
+ equals(other: Nullable<any>): boolean;
930
+ readonly __doNotUseOrImplementIt: SinglePromptRequest["__doNotUseOrImplementIt"];
931
+ }
932
+ export declare namespace PassphrasePromptRequest {
933
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
934
+ namespace $metadata$ {
935
+ const constructor: abstract new () => PassphrasePromptRequest;
936
+ }
937
+ }
938
+ export declare class ConfirmationPromptRequest implements SinglePromptRequest {
939
+ constructor(id: any/* PromptId */ | undefined, title: string, subtitle: Nullable<string> | undefined, show: boolean | undefined, presentationHint: PromptPresentationHint | undefined, message: string, confirmText?: string, cancelText?: string, isDestructive?: boolean);
940
+ get id(): any/* PromptId */;
941
+ get title(): string;
942
+ get subtitle(): Nullable<string>;
943
+ get show(): boolean;
944
+ get presentationHint(): PromptPresentationHint;
945
+ get message(): string;
946
+ get confirmText(): string;
947
+ get cancelText(): string;
948
+ get isDestructive(): boolean;
949
+ copy(id?: any/* PromptId */, title?: string, subtitle?: Nullable<string>, show?: boolean, presentationHint?: PromptPresentationHint, message?: string, confirmText?: string, cancelText?: string, isDestructive?: boolean): ConfirmationPromptRequest;
950
+ toString(): string;
951
+ hashCode(): number;
952
+ equals(other: Nullable<any>): boolean;
953
+ readonly __doNotUseOrImplementIt: SinglePromptRequest["__doNotUseOrImplementIt"];
954
+ }
955
+ export declare namespace ConfirmationPromptRequest {
956
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
957
+ namespace $metadata$ {
958
+ const constructor: abstract new () => ConfirmationPromptRequest;
959
+ }
960
+ }
961
+ export declare interface PromptResponse {
962
+ readonly promptId: any/* PromptId */;
963
+ readonly state: PromptState;
964
+ readonly __doNotUseOrImplementIt: {
965
+ readonly "com.sphereon.ui.prompt.core.PromptResponse": unique symbol;
966
+ };
967
+ }
968
+ export declare abstract class PromptState {
969
+ private constructor();
970
+ static get PENDING(): PromptState & {
971
+ get name(): "PENDING";
972
+ get ordinal(): 0;
973
+ };
974
+ static get ACTIVE(): PromptState & {
975
+ get name(): "ACTIVE";
976
+ get ordinal(): 1;
977
+ };
978
+ static get SUCCESS(): PromptState & {
979
+ get name(): "SUCCESS";
980
+ get ordinal(): 2;
981
+ };
982
+ static get CANCELLED(): PromptState & {
983
+ get name(): "CANCELLED";
984
+ get ordinal(): 3;
985
+ };
986
+ static get TIMED_OUT(): PromptState & {
987
+ get name(): "TIMED_OUT";
988
+ get ordinal(): 4;
989
+ };
990
+ static get ERROR(): PromptState & {
991
+ get name(): "ERROR";
992
+ get ordinal(): 5;
993
+ };
994
+ static values(): [typeof PromptState.PENDING, typeof PromptState.ACTIVE, typeof PromptState.SUCCESS, typeof PromptState.CANCELLED, typeof PromptState.TIMED_OUT, typeof PromptState.ERROR];
995
+ static valueOf(value: string): PromptState;
996
+ get name(): "PENDING" | "ACTIVE" | "SUCCESS" | "CANCELLED" | "TIMED_OUT" | "ERROR";
997
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
998
+ get isTerminal(): boolean;
999
+ get isActive(): boolean;
1000
+ get isPending(): boolean;
1001
+ }
1002
+ export declare namespace PromptState {
1003
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1004
+ namespace $metadata$ {
1005
+ const constructor: abstract new () => PromptState;
1006
+ }
1007
+ }
1008
+ export declare abstract class ForegroundState {
1009
+ private constructor();
1010
+ static get FOREGROUND(): ForegroundState & {
1011
+ get name(): "FOREGROUND";
1012
+ get ordinal(): 0;
1013
+ };
1014
+ static get BACKGROUND(): ForegroundState & {
1015
+ get name(): "BACKGROUND";
1016
+ get ordinal(): 1;
1017
+ };
1018
+ static get UNKNOWN(): ForegroundState & {
1019
+ get name(): "UNKNOWN";
1020
+ get ordinal(): 2;
1021
+ };
1022
+ static values(): [typeof ForegroundState.FOREGROUND, typeof ForegroundState.BACKGROUND, typeof ForegroundState.UNKNOWN];
1023
+ static valueOf(value: string): ForegroundState;
1024
+ get name(): "FOREGROUND" | "BACKGROUND" | "UNKNOWN";
1025
+ get ordinal(): 0 | 1 | 2;
1026
+ }
1027
+ export declare namespace ForegroundState {
1028
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1029
+ namespace $metadata$ {
1030
+ const constructor: abstract new () => ForegroundState;
1031
+ }
1032
+ }
1033
+ export declare interface PromptPresenter {
1034
+ readonly foregroundState: any/* StateFlow<ForegroundState> */;
1035
+ readonly canPresentPrompts: boolean;
1036
+ onForeground(): void;
1037
+ onBackground(): void;
1038
+ shouldDeferPrompt(request: PromptRequest): boolean;
1039
+ readonly __doNotUseOrImplementIt: {
1040
+ readonly "com.sphereon.ui.prompt.presenter.PromptPresenter": unique symbol;
1041
+ };
1042
+ }
1043
+ export declare interface WizardStep {
1044
+ readonly id: string;
1045
+ readonly isFinal: boolean;
1046
+ readonly data: Nullable<any>;
1047
+ readonly __doNotUseOrImplementIt: {
1048
+ readonly "com.sphereon.ui.prompt.wizard.WizardStep": unique symbol;
1049
+ };
1050
+ }
1051
+ /** @deprecated */
1052
+ export declare const initHook: {
1053
+ get(): any;
1054
+ };
1055
+ export declare class ThemePalette {
1056
+ constructor(seedColor: string, primary: TonalPaletteResult, secondary: TonalPaletteResult, tertiary: TonalPaletteResult, neutral: TonalPaletteResult, error: TonalPaletteResult);
1057
+ get seedColor(): string;
1058
+ get primary(): TonalPaletteResult;
1059
+ get secondary(): TonalPaletteResult;
1060
+ get tertiary(): TonalPaletteResult;
1061
+ get neutral(): TonalPaletteResult;
1062
+ get error(): TonalPaletteResult;
1063
+ copy(seedColor?: string, primary?: TonalPaletteResult, secondary?: TonalPaletteResult, tertiary?: TonalPaletteResult, neutral?: TonalPaletteResult, error?: TonalPaletteResult): ThemePalette;
1064
+ toString(): string;
1065
+ hashCode(): number;
1066
+ equals(other: Nullable<any>): boolean;
1067
+ }
1068
+ export declare namespace ThemePalette {
1069
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1070
+ namespace $metadata$ {
1071
+ const constructor: abstract new () => ThemePalette;
1072
+ }
1073
+ }
1074
+ export declare class ExtendedThemePalette {
1075
+ constructor(base: ThemePalette, success: TonalPaletteResult, warning: TonalPaletteResult, info: TonalPaletteResult);
1076
+ get base(): ThemePalette;
1077
+ get success(): TonalPaletteResult;
1078
+ get warning(): TonalPaletteResult;
1079
+ get info(): TonalPaletteResult;
1080
+ copy(base?: ThemePalette, success?: TonalPaletteResult, warning?: TonalPaletteResult, info?: TonalPaletteResult): ExtendedThemePalette;
1081
+ toString(): string;
1082
+ hashCode(): number;
1083
+ equals(other: Nullable<any>): boolean;
1084
+ }
1085
+ export declare namespace ExtendedThemePalette {
1086
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1087
+ namespace $metadata$ {
1088
+ const constructor: abstract new () => ExtendedThemePalette;
1089
+ }
1090
+ }
1091
+ export declare class TonalPaletteResult {
1092
+ constructor(tone0: string, tone10: string, tone20: string, tone30: string, tone40: string, tone50: string, tone60: string, tone70: string, tone80: string, tone90: string, tone95: string, tone99: string, tone100: string);
1093
+ get tone0(): string;
1094
+ get tone10(): string;
1095
+ get tone20(): string;
1096
+ get tone30(): string;
1097
+ get tone40(): string;
1098
+ get tone50(): string;
1099
+ get tone60(): string;
1100
+ get tone70(): string;
1101
+ get tone80(): string;
1102
+ get tone90(): string;
1103
+ get tone95(): string;
1104
+ get tone99(): string;
1105
+ get tone100(): string;
1106
+ copy(tone0?: string, tone10?: string, tone20?: string, tone30?: string, tone40?: string, tone50?: string, tone60?: string, tone70?: string, tone80?: string, tone90?: string, tone95?: string, tone99?: string, tone100?: string): TonalPaletteResult;
1107
+ toString(): string;
1108
+ hashCode(): number;
1109
+ equals(other: Nullable<any>): boolean;
1110
+ }
1111
+ export declare namespace TonalPaletteResult {
1112
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1113
+ namespace $metadata$ {
1114
+ const constructor: abstract new () => TonalPaletteResult;
1115
+ }
1116
+ }
1117
+ export declare abstract class ThemeScope {
1118
+ private constructor();
1119
+ static get SYSTEM(): ThemeScope & {
1120
+ get name(): "SYSTEM";
1121
+ get ordinal(): 0;
1122
+ };
1123
+ static get APP(): ThemeScope & {
1124
+ get name(): "APP";
1125
+ get ordinal(): 1;
1126
+ };
1127
+ static get TENANT(): ThemeScope & {
1128
+ get name(): "TENANT";
1129
+ get ordinal(): 2;
1130
+ };
1131
+ static get PRINCIPAL(): ThemeScope & {
1132
+ get name(): "PRINCIPAL";
1133
+ get ordinal(): 3;
1134
+ };
1135
+ static values(): [typeof ThemeScope.SYSTEM, typeof ThemeScope.APP, typeof ThemeScope.TENANT, typeof ThemeScope.PRINCIPAL];
1136
+ static valueOf(value: string): ThemeScope;
1137
+ get name(): "SYSTEM" | "APP" | "TENANT" | "PRINCIPAL";
1138
+ get ordinal(): 0 | 1 | 2 | 3;
1139
+ }
1140
+ export declare namespace ThemeScope {
1141
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1142
+ namespace $metadata$ {
1143
+ const constructor: abstract new () => ThemeScope;
1144
+ }
1145
+ }
1146
+ export declare abstract class ThemeTokenType {
1147
+ private constructor();
1148
+ static get COLOR(): ThemeTokenType & {
1149
+ get name(): "COLOR";
1150
+ get ordinal(): 0;
1151
+ };
1152
+ static get DIMENSION(): ThemeTokenType & {
1153
+ get name(): "DIMENSION";
1154
+ get ordinal(): 1;
1155
+ };
1156
+ static get FONT_FAMILY(): ThemeTokenType & {
1157
+ get name(): "FONT_FAMILY";
1158
+ get ordinal(): 2;
1159
+ };
1160
+ static get FONT_WEIGHT(): ThemeTokenType & {
1161
+ get name(): "FONT_WEIGHT";
1162
+ get ordinal(): 3;
1163
+ };
1164
+ static get OPACITY(): ThemeTokenType & {
1165
+ get name(): "OPACITY";
1166
+ get ordinal(): 4;
1167
+ };
1168
+ static get DURATION(): ThemeTokenType & {
1169
+ get name(): "DURATION";
1170
+ get ordinal(): 5;
1171
+ };
1172
+ static get EASING(): ThemeTokenType & {
1173
+ get name(): "EASING";
1174
+ get ordinal(): 6;
1175
+ };
1176
+ static get SHADOW(): ThemeTokenType & {
1177
+ get name(): "SHADOW";
1178
+ get ordinal(): 7;
1179
+ };
1180
+ static get BORDER_WIDTH(): ThemeTokenType & {
1181
+ get name(): "BORDER_WIDTH";
1182
+ get ordinal(): 8;
1183
+ };
1184
+ static get SPACING(): ThemeTokenType & {
1185
+ get name(): "SPACING";
1186
+ get ordinal(): 9;
1187
+ };
1188
+ static get STRING(): ThemeTokenType & {
1189
+ get name(): "STRING";
1190
+ get ordinal(): 10;
1191
+ };
1192
+ static values(): [typeof ThemeTokenType.COLOR, typeof ThemeTokenType.DIMENSION, typeof ThemeTokenType.FONT_FAMILY, typeof ThemeTokenType.FONT_WEIGHT, typeof ThemeTokenType.OPACITY, typeof ThemeTokenType.DURATION, typeof ThemeTokenType.EASING, typeof ThemeTokenType.SHADOW, typeof ThemeTokenType.BORDER_WIDTH, typeof ThemeTokenType.SPACING, typeof ThemeTokenType.STRING];
1193
+ static valueOf(value: string): ThemeTokenType;
1194
+ get name(): "COLOR" | "DIMENSION" | "FONT_FAMILY" | "FONT_WEIGHT" | "OPACITY" | "DURATION" | "EASING" | "SHADOW" | "BORDER_WIDTH" | "SPACING" | "STRING";
1195
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
1196
+ }
1197
+ export declare namespace ThemeTokenType {
1198
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1199
+ namespace $metadata$ {
1200
+ const constructor: abstract new () => ThemeTokenType;
1201
+ }
1202
+ }
1203
+ export declare abstract class ThemeVariant {
1204
+ private constructor();
1205
+ static get LIGHT(): ThemeVariant & {
1206
+ get name(): "LIGHT";
1207
+ get ordinal(): 0;
1208
+ };
1209
+ static get DARK(): ThemeVariant & {
1210
+ get name(): "DARK";
1211
+ get ordinal(): 1;
1212
+ };
1213
+ static get HIGH_CONTRAST(): ThemeVariant & {
1214
+ get name(): "HIGH_CONTRAST";
1215
+ get ordinal(): 2;
1216
+ };
1217
+ static values(): [typeof ThemeVariant.LIGHT, typeof ThemeVariant.DARK, typeof ThemeVariant.HIGH_CONTRAST];
1218
+ static valueOf(value: string): ThemeVariant;
1219
+ get name(): "LIGHT" | "DARK" | "HIGH_CONTRAST";
1220
+ get ordinal(): 0 | 1 | 2;
1221
+ }
1222
+ export declare namespace ThemeVariant {
1223
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1224
+ namespace $metadata$ {
1225
+ const constructor: abstract new () => ThemeVariant;
1226
+ }
1227
+ }
1228
+ export declare abstract class DesignSystemPaletteResolver {
1229
+ static readonly getInstance: () => typeof DesignSystemPaletteResolver.$metadata$.type;
1230
+ private constructor();
1231
+ }
1232
+ export declare namespace DesignSystemPaletteResolver {
1233
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1234
+ namespace $metadata$ {
1235
+ abstract class type extends KtSingleton<constructor>() {
1236
+ private constructor();
1237
+ }
1238
+ abstract class constructor {
1239
+ resolve(config: ThemeColorConfig, variant: ThemeVariant, mapping?: PaletteMapping): KtMap<string, string>;
1240
+ private constructor();
1241
+ }
1242
+ }
1243
+ }
1244
+ export declare abstract class M3PaletteGenerator {
1245
+ static readonly getInstance: () => typeof M3PaletteGenerator.$metadata$.type;
1246
+ private constructor();
1247
+ }
1248
+ export declare namespace M3PaletteGenerator {
1249
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1250
+ namespace $metadata$ {
1251
+ abstract class type extends KtSingleton<constructor>() {
1252
+ private constructor();
1253
+ }
1254
+ abstract class constructor {
1255
+ generate(seedHex: string): ThemePalette;
1256
+ generateFromSeeds(primarySeed: string, secondarySeed?: Nullable<string>, tertiarySeed?: Nullable<string>, neutralSeed?: Nullable<string>): ThemePalette;
1257
+ generateExtended(seedHex: string): ExtendedThemePalette;
1258
+ private constructor();
1259
+ }
1260
+ }
1261
+ }
1262
+ export declare class PaletteRef {
1263
+ constructor(scale: string, stop: number);
1264
+ get scale(): string;
1265
+ get stop(): number;
1266
+ copy(scale?: string, stop?: number): PaletteRef;
1267
+ toString(): string;
1268
+ hashCode(): number;
1269
+ equals(other: Nullable<any>): boolean;
1270
+ }
1271
+ export declare namespace PaletteRef {
1272
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1273
+ namespace $metadata$ {
1274
+ const constructor: abstract new () => PaletteRef;
1275
+ }
1276
+ }
1277
+ export declare class PaletteMapping {
1278
+ constructor(light: KtMap<string, PaletteRef>, dark: KtMap<string, PaletteRef>);
1279
+ get light(): KtMap<string, PaletteRef>;
1280
+ get dark(): KtMap<string, PaletteRef>;
1281
+ copy(light?: KtMap<string, PaletteRef>, dark?: KtMap<string, PaletteRef>): PaletteMapping;
1282
+ toString(): string;
1283
+ hashCode(): number;
1284
+ equals(other: Nullable<any>): boolean;
1285
+ }
1286
+ export declare namespace PaletteMapping {
1287
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1288
+ namespace $metadata$ {
1289
+ const constructor: abstract new () => PaletteMapping;
1290
+ }
1291
+ }
1292
+ export declare class PaletteScale {
1293
+ constructor(s50: string, s100: string, s200: string, s300: string, s400: string, s500: string, s600: string, s700: string, s800: string, s900: string);
1294
+ get s50(): string;
1295
+ get s100(): string;
1296
+ get s200(): string;
1297
+ get s300(): string;
1298
+ get s400(): string;
1299
+ get s500(): string;
1300
+ get s600(): string;
1301
+ get s700(): string;
1302
+ get s800(): string;
1303
+ get s900(): string;
1304
+ get(stop: number): string;
1305
+ copy(s50?: string, s100?: string, s200?: string, s300?: string, s400?: string, s500?: string, s600?: string, s700?: string, s800?: string, s900?: string): PaletteScale;
1306
+ toString(): string;
1307
+ hashCode(): number;
1308
+ equals(other: Nullable<any>): boolean;
1309
+ }
1310
+ export declare namespace PaletteScale {
1311
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1312
+ namespace $metadata$ {
1313
+ const constructor: abstract new () => PaletteScale;
1314
+ }
1315
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
1316
+ private constructor();
1317
+ }
1318
+ namespace Companion {
1319
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1320
+ namespace $metadata$ {
1321
+ abstract class constructor {
1322
+ get STOPS(): KtList<number>;
1323
+ fromTonalPalette(palette: any/* TonalPalette */): PaletteScale;
1324
+ private constructor();
1325
+ }
1326
+ }
1327
+ }
1328
+ }
1329
+ export declare class DesignSystemPalette {
1330
+ constructor(brand: PaletteScale, secondary?: Nullable<PaletteScale>, neutral?: Nullable<PaletteScale>, error?: Nullable<PaletteScale>, success?: Nullable<PaletteScale>, warning?: Nullable<PaletteScale>, info?: Nullable<PaletteScale>, pending?: Nullable<PaletteScale>);
1331
+ get brand(): PaletteScale;
1332
+ get secondary(): Nullable<PaletteScale>;
1333
+ get neutral(): Nullable<PaletteScale>;
1334
+ get error(): Nullable<PaletteScale>;
1335
+ get success(): Nullable<PaletteScale>;
1336
+ get warning(): Nullable<PaletteScale>;
1337
+ get info(): Nullable<PaletteScale>;
1338
+ get pending(): Nullable<PaletteScale>;
1339
+ getScale(role: string): Nullable<PaletteScale>;
1340
+ get definedRoles(): KtList<string>;
1341
+ copy(brand?: PaletteScale, secondary?: Nullable<PaletteScale>, neutral?: Nullable<PaletteScale>, error?: Nullable<PaletteScale>, success?: Nullable<PaletteScale>, warning?: Nullable<PaletteScale>, info?: Nullable<PaletteScale>, pending?: Nullable<PaletteScale>): DesignSystemPalette;
1342
+ toString(): string;
1343
+ hashCode(): number;
1344
+ equals(other: Nullable<any>): boolean;
1345
+ }
1346
+ export declare namespace DesignSystemPalette {
1347
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1348
+ namespace $metadata$ {
1349
+ const constructor: abstract new () => DesignSystemPalette;
1350
+ }
1351
+ }
1352
+ export declare abstract class ThemeColorConfig {
1353
+ private constructor();
1354
+ }
1355
+ export declare namespace ThemeColorConfig {
1356
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1357
+ namespace $metadata$ {
1358
+ const constructor: abstract new () => ThemeColorConfig;
1359
+ }
1360
+ class SeedColor extends ThemeColorConfig.$metadata$.constructor {
1361
+ constructor(seed: string);
1362
+ get seed(): string;
1363
+ copy(seed?: string): ThemeColorConfig.SeedColor;
1364
+ toString(): string;
1365
+ hashCode(): number;
1366
+ equals(other: Nullable<any>): boolean;
1367
+ }
1368
+ namespace SeedColor {
1369
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1370
+ namespace $metadata$ {
1371
+ const constructor: abstract new () => SeedColor;
1372
+ }
1373
+ }
1374
+ class MultiSeed extends ThemeColorConfig.$metadata$.constructor {
1375
+ constructor(primary: string, secondary?: Nullable<string>, tertiary?: Nullable<string>, neutral?: Nullable<string>);
1376
+ get primary(): string;
1377
+ get secondary(): Nullable<string>;
1378
+ get tertiary(): Nullable<string>;
1379
+ get neutral(): Nullable<string>;
1380
+ copy(primary?: string, secondary?: Nullable<string>, tertiary?: Nullable<string>, neutral?: Nullable<string>): ThemeColorConfig.MultiSeed;
1381
+ toString(): string;
1382
+ hashCode(): number;
1383
+ equals(other: Nullable<any>): boolean;
1384
+ }
1385
+ namespace MultiSeed {
1386
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1387
+ namespace $metadata$ {
1388
+ const constructor: abstract new () => MultiSeed;
1389
+ }
1390
+ }
1391
+ class ExplicitPalettes extends ThemeColorConfig.$metadata$.constructor {
1392
+ constructor(palettes: DesignSystemPalette);
1393
+ get palettes(): DesignSystemPalette;
1394
+ copy(palettes?: DesignSystemPalette): ThemeColorConfig.ExplicitPalettes;
1395
+ toString(): string;
1396
+ hashCode(): number;
1397
+ equals(other: Nullable<any>): boolean;
1398
+ }
1399
+ namespace ExplicitPalettes {
1400
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1401
+ namespace $metadata$ {
1402
+ const constructor: abstract new () => ExplicitPalettes;
1403
+ }
1404
+ }
1405
+ class Hybrid extends ThemeColorConfig.$metadata$.constructor {
1406
+ constructor(palettes: DesignSystemPalette, fallbackSeed?: Nullable<string>);
1407
+ get palettes(): DesignSystemPalette;
1408
+ get fallbackSeed(): Nullable<string>;
1409
+ copy(palettes?: DesignSystemPalette, fallbackSeed?: Nullable<string>): ThemeColorConfig.Hybrid;
1410
+ toString(): string;
1411
+ hashCode(): number;
1412
+ equals(other: Nullable<any>): boolean;
1413
+ }
1414
+ namespace Hybrid {
1415
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1416
+ namespace $metadata$ {
1417
+ const constructor: abstract new () => Hybrid;
1418
+ }
1419
+ }
1420
+ }
1421
+ export declare abstract class TokenKeyConstants {
1422
+ static readonly getInstance: () => typeof TokenKeyConstants.$metadata$.type;
1423
+ private constructor();
1424
+ }
1425
+ export declare namespace TokenKeyConstants {
1426
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1427
+ namespace $metadata$ {
1428
+ abstract class type extends KtSingleton<constructor>() {
1429
+ private constructor();
1430
+ }
1431
+ abstract class constructor {
1432
+ get COLOR_PRIMARY(): string;
1433
+ get COLOR_ON_PRIMARY(): string;
1434
+ get COLOR_PRIMARY_CONTAINER(): string;
1435
+ get COLOR_ON_PRIMARY_CONTAINER(): string;
1436
+ get COLOR_SECONDARY(): string;
1437
+ get COLOR_ON_SECONDARY(): string;
1438
+ get COLOR_SECONDARY_CONTAINER(): string;
1439
+ get COLOR_ON_SECONDARY_CONTAINER(): string;
1440
+ get COLOR_TERTIARY(): string;
1441
+ get COLOR_ON_TERTIARY(): string;
1442
+ get COLOR_TERTIARY_CONTAINER(): string;
1443
+ get COLOR_ON_TERTIARY_CONTAINER(): string;
1444
+ get COLOR_ERROR(): string;
1445
+ get COLOR_ON_ERROR(): string;
1446
+ get COLOR_ERROR_CONTAINER(): string;
1447
+ get COLOR_ON_ERROR_CONTAINER(): string;
1448
+ get COLOR_SURFACE(): string;
1449
+ get COLOR_ON_SURFACE(): string;
1450
+ get COLOR_SURFACE_VARIANT(): string;
1451
+ get COLOR_ON_SURFACE_VARIANT(): string;
1452
+ get COLOR_SURFACE_CONTAINER(): string;
1453
+ get COLOR_SURFACE_CONTAINER_HIGH(): string;
1454
+ get COLOR_SURFACE_CONTAINER_HIGHEST(): string;
1455
+ get COLOR_SURFACE_CONTAINER_LOW(): string;
1456
+ get COLOR_SURFACE_CONTAINER_LOWEST(): string;
1457
+ get COLOR_BACKGROUND(): string;
1458
+ get COLOR_ON_BACKGROUND(): string;
1459
+ get COLOR_OUTLINE(): string;
1460
+ get COLOR_OUTLINE_VARIANT(): string;
1461
+ get COLOR_INVERSE_SURFACE(): string;
1462
+ get COLOR_INVERSE_ON_SURFACE(): string;
1463
+ get COLOR_INVERSE_PRIMARY(): string;
1464
+ get COLOR_SCRIM(): string;
1465
+ get COLOR_SHADOW(): string;
1466
+ get ELEVATION_NONE(): string;
1467
+ get ELEVATION_XS(): string;
1468
+ get ELEVATION_SM(): string;
1469
+ get ELEVATION_MD(): string;
1470
+ get ELEVATION_LG(): string;
1471
+ get ELEVATION_XL(): string;
1472
+ get TYPOGRAPHY_FONT_FAMILY(): string;
1473
+ get TYPOGRAPHY_FONT_FAMILY_MONO(): string;
1474
+ get TYPOGRAPHY_DISPLAY_LARGE_FONT_FAMILY(): string;
1475
+ get TYPOGRAPHY_DISPLAY_LARGE_FONT_SIZE(): string;
1476
+ get TYPOGRAPHY_DISPLAY_LARGE_FONT_WEIGHT(): string;
1477
+ get TYPOGRAPHY_DISPLAY_LARGE_LINE_HEIGHT(): string;
1478
+ get TYPOGRAPHY_DISPLAY_LARGE_LETTER_SPACING(): string;
1479
+ get TYPOGRAPHY_DISPLAY_MEDIUM_FONT_FAMILY(): string;
1480
+ get TYPOGRAPHY_DISPLAY_MEDIUM_FONT_SIZE(): string;
1481
+ get TYPOGRAPHY_DISPLAY_MEDIUM_FONT_WEIGHT(): string;
1482
+ get TYPOGRAPHY_DISPLAY_MEDIUM_LINE_HEIGHT(): string;
1483
+ get TYPOGRAPHY_DISPLAY_MEDIUM_LETTER_SPACING(): string;
1484
+ get TYPOGRAPHY_DISPLAY_SMALL_FONT_FAMILY(): string;
1485
+ get TYPOGRAPHY_DISPLAY_SMALL_FONT_SIZE(): string;
1486
+ get TYPOGRAPHY_DISPLAY_SMALL_FONT_WEIGHT(): string;
1487
+ get TYPOGRAPHY_DISPLAY_SMALL_LINE_HEIGHT(): string;
1488
+ get TYPOGRAPHY_DISPLAY_SMALL_LETTER_SPACING(): string;
1489
+ get TYPOGRAPHY_HEADLINE_LARGE_FONT_FAMILY(): string;
1490
+ get TYPOGRAPHY_HEADLINE_LARGE_FONT_SIZE(): string;
1491
+ get TYPOGRAPHY_HEADLINE_LARGE_FONT_WEIGHT(): string;
1492
+ get TYPOGRAPHY_HEADLINE_LARGE_LINE_HEIGHT(): string;
1493
+ get TYPOGRAPHY_HEADLINE_LARGE_LETTER_SPACING(): string;
1494
+ get TYPOGRAPHY_HEADLINE_MEDIUM_FONT_FAMILY(): string;
1495
+ get TYPOGRAPHY_HEADLINE_MEDIUM_FONT_SIZE(): string;
1496
+ get TYPOGRAPHY_HEADLINE_MEDIUM_FONT_WEIGHT(): string;
1497
+ get TYPOGRAPHY_HEADLINE_MEDIUM_LINE_HEIGHT(): string;
1498
+ get TYPOGRAPHY_HEADLINE_MEDIUM_LETTER_SPACING(): string;
1499
+ get TYPOGRAPHY_HEADLINE_SMALL_FONT_FAMILY(): string;
1500
+ get TYPOGRAPHY_HEADLINE_SMALL_FONT_SIZE(): string;
1501
+ get TYPOGRAPHY_HEADLINE_SMALL_FONT_WEIGHT(): string;
1502
+ get TYPOGRAPHY_HEADLINE_SMALL_LINE_HEIGHT(): string;
1503
+ get TYPOGRAPHY_HEADLINE_SMALL_LETTER_SPACING(): string;
1504
+ get TYPOGRAPHY_TITLE_LARGE_FONT_FAMILY(): string;
1505
+ get TYPOGRAPHY_TITLE_LARGE_FONT_SIZE(): string;
1506
+ get TYPOGRAPHY_TITLE_LARGE_FONT_WEIGHT(): string;
1507
+ get TYPOGRAPHY_TITLE_LARGE_LINE_HEIGHT(): string;
1508
+ get TYPOGRAPHY_TITLE_LARGE_LETTER_SPACING(): string;
1509
+ get TYPOGRAPHY_TITLE_MEDIUM_FONT_FAMILY(): string;
1510
+ get TYPOGRAPHY_TITLE_MEDIUM_FONT_SIZE(): string;
1511
+ get TYPOGRAPHY_TITLE_MEDIUM_FONT_WEIGHT(): string;
1512
+ get TYPOGRAPHY_TITLE_MEDIUM_LINE_HEIGHT(): string;
1513
+ get TYPOGRAPHY_TITLE_MEDIUM_LETTER_SPACING(): string;
1514
+ get TYPOGRAPHY_TITLE_SMALL_FONT_FAMILY(): string;
1515
+ get TYPOGRAPHY_TITLE_SMALL_FONT_SIZE(): string;
1516
+ get TYPOGRAPHY_TITLE_SMALL_FONT_WEIGHT(): string;
1517
+ get TYPOGRAPHY_TITLE_SMALL_LINE_HEIGHT(): string;
1518
+ get TYPOGRAPHY_TITLE_SMALL_LETTER_SPACING(): string;
1519
+ get TYPOGRAPHY_BODY_LARGE_FONT_FAMILY(): string;
1520
+ get TYPOGRAPHY_BODY_LARGE_FONT_SIZE(): string;
1521
+ get TYPOGRAPHY_BODY_LARGE_FONT_WEIGHT(): string;
1522
+ get TYPOGRAPHY_BODY_LARGE_LINE_HEIGHT(): string;
1523
+ get TYPOGRAPHY_BODY_LARGE_LETTER_SPACING(): string;
1524
+ get TYPOGRAPHY_BODY_MEDIUM_FONT_FAMILY(): string;
1525
+ get TYPOGRAPHY_BODY_MEDIUM_FONT_SIZE(): string;
1526
+ get TYPOGRAPHY_BODY_MEDIUM_FONT_WEIGHT(): string;
1527
+ get TYPOGRAPHY_BODY_MEDIUM_LINE_HEIGHT(): string;
1528
+ get TYPOGRAPHY_BODY_MEDIUM_LETTER_SPACING(): string;
1529
+ get TYPOGRAPHY_BODY_SMALL_FONT_FAMILY(): string;
1530
+ get TYPOGRAPHY_BODY_SMALL_FONT_SIZE(): string;
1531
+ get TYPOGRAPHY_BODY_SMALL_FONT_WEIGHT(): string;
1532
+ get TYPOGRAPHY_BODY_SMALL_LINE_HEIGHT(): string;
1533
+ get TYPOGRAPHY_BODY_SMALL_LETTER_SPACING(): string;
1534
+ get TYPOGRAPHY_LABEL_LARGE_FONT_FAMILY(): string;
1535
+ get TYPOGRAPHY_LABEL_LARGE_FONT_SIZE(): string;
1536
+ get TYPOGRAPHY_LABEL_LARGE_FONT_WEIGHT(): string;
1537
+ get TYPOGRAPHY_LABEL_LARGE_LINE_HEIGHT(): string;
1538
+ get TYPOGRAPHY_LABEL_LARGE_LETTER_SPACING(): string;
1539
+ get TYPOGRAPHY_LABEL_MEDIUM_FONT_FAMILY(): string;
1540
+ get TYPOGRAPHY_LABEL_MEDIUM_FONT_SIZE(): string;
1541
+ get TYPOGRAPHY_LABEL_MEDIUM_FONT_WEIGHT(): string;
1542
+ get TYPOGRAPHY_LABEL_MEDIUM_LINE_HEIGHT(): string;
1543
+ get TYPOGRAPHY_LABEL_MEDIUM_LETTER_SPACING(): string;
1544
+ get TYPOGRAPHY_LABEL_SMALL_FONT_FAMILY(): string;
1545
+ get TYPOGRAPHY_LABEL_SMALL_FONT_SIZE(): string;
1546
+ get TYPOGRAPHY_LABEL_SMALL_FONT_WEIGHT(): string;
1547
+ get TYPOGRAPHY_LABEL_SMALL_LINE_HEIGHT(): string;
1548
+ get TYPOGRAPHY_LABEL_SMALL_LETTER_SPACING(): string;
1549
+ get BRANDING_APP_NAME(): string;
1550
+ get BRANDING_PRIMARY_COLOR(): string;
1551
+ get BRANDING_SECONDARY_COLOR(): string;
1552
+ get BRANDING_LOGO_URL(): string;
1553
+ get BRANDING_LOGO_DARK_URL(): string;
1554
+ get BRANDING_FAVICON_URL(): string;
1555
+ get BRANDING_FONT_RESOURCE_ID(): string;
1556
+ get BRANDING_LOGO_RESOURCE_ID(): string;
1557
+ get BRANDING_LOGO_DARK_RESOURCE_ID(): string;
1558
+ get SHAPE_CORNER_EXTRA_SMALL(): string;
1559
+ get SHAPE_CORNER_SMALL(): string;
1560
+ get SHAPE_CORNER_MEDIUM(): string;
1561
+ get SHAPE_CORNER_LARGE(): string;
1562
+ get SHAPE_CORNER_EXTRA_LARGE(): string;
1563
+ get MOTION_DURATION_SHORT1(): string;
1564
+ get MOTION_DURATION_SHORT2(): string;
1565
+ get MOTION_DURATION_SHORT3(): string;
1566
+ get MOTION_DURATION_SHORT4(): string;
1567
+ get MOTION_DURATION_MEDIUM1(): string;
1568
+ get MOTION_DURATION_MEDIUM2(): string;
1569
+ get MOTION_DURATION_MEDIUM3(): string;
1570
+ get MOTION_DURATION_MEDIUM4(): string;
1571
+ get MOTION_DURATION_LONG1(): string;
1572
+ get MOTION_DURATION_LONG2(): string;
1573
+ get MOTION_DURATION_LONG3(): string;
1574
+ get MOTION_DURATION_LONG4(): string;
1575
+ get MOTION_EASING_STANDARD(): string;
1576
+ get MOTION_EASING_STANDARD_DECELERATE(): string;
1577
+ get MOTION_EASING_STANDARD_ACCELERATE(): string;
1578
+ get MOTION_EASING_EMPHASIZED(): string;
1579
+ get MOTION_EASING_EMPHASIZED_DECELERATE(): string;
1580
+ get MOTION_EASING_EMPHASIZED_ACCELERATE(): string;
1581
+ get MOTION_EASING_LINEAR(): string;
1582
+ get MOTION_THEME_TRANSITION_DURATION(): string;
1583
+ get MOTION_THEME_TRANSITION_EASING(): string;
1584
+ get RESPONSIVE_SCALE_MEDIUM_DISPLAY(): string;
1585
+ get RESPONSIVE_SCALE_MEDIUM_HEADLINE(): string;
1586
+ get RESPONSIVE_SCALE_EXPANDED_DISPLAY(): string;
1587
+ get RESPONSIVE_SCALE_EXPANDED_HEADLINE(): string;
1588
+ get RESPONSIVE_SCALE_EXPANDED_TITLE(): string;
1589
+ get SPACING_0(): string;
1590
+ get SPACING_1(): string;
1591
+ get SPACING_2(): string;
1592
+ get SPACING_3(): string;
1593
+ get SPACING_4(): string;
1594
+ get SPACING_5(): string;
1595
+ get SPACING_6(): string;
1596
+ get SPACING_8(): string;
1597
+ get SPACING_10(): string;
1598
+ get SPACING_12(): string;
1599
+ get SPACING_14(): string;
1600
+ get SPACING_16(): string;
1601
+ get SPACING_20(): string;
1602
+ get SPACING_24(): string;
1603
+ get SPACING_32(): string;
1604
+ get SPACING_40(): string;
1605
+ get SPACING_48(): string;
1606
+ get SPACING_INLINE_XS(): string;
1607
+ get SPACING_INLINE_SM(): string;
1608
+ get SPACING_INLINE_MD(): string;
1609
+ get SPACING_INLINE_LG(): string;
1610
+ get SPACING_INLINE_XL(): string;
1611
+ get SPACING_STACK_XS(): string;
1612
+ get SPACING_STACK_SM(): string;
1613
+ get SPACING_STACK_MD(): string;
1614
+ get SPACING_STACK_LG(): string;
1615
+ get SPACING_STACK_XL(): string;
1616
+ get SPACING_INSET_XS(): string;
1617
+ get SPACING_INSET_SM(): string;
1618
+ get SPACING_INSET_MD(): string;
1619
+ get SPACING_INSET_LG(): string;
1620
+ get SPACING_INSET_XL(): string;
1621
+ get BORDER_WIDTH_NONE(): string;
1622
+ get BORDER_WIDTH_THIN(): string;
1623
+ get BORDER_WIDTH_MEDIUM(): string;
1624
+ get BORDER_WIDTH_THICK(): string;
1625
+ get SHADOW_ELEVATION_NONE(): string;
1626
+ get SHADOW_ELEVATION_XS(): string;
1627
+ get SHADOW_ELEVATION_SM(): string;
1628
+ get SHADOW_ELEVATION_MD(): string;
1629
+ get SHADOW_ELEVATION_LG(): string;
1630
+ get SHADOW_ELEVATION_XL(): string;
1631
+ get SHADOW_ELEVATION_XXL(): string;
1632
+ get SHADOW_SUBTLE(): string;
1633
+ get SHADOW_RAISED(): string;
1634
+ get SHADOW_FLOATING(): string;
1635
+ get SHADOW_OVERLAY(): string;
1636
+ get SHADOW_DRAMATIC(): string;
1637
+ get SHADOW_STATE_FOCUS(): string;
1638
+ get SHADOW_STATE_ERROR(): string;
1639
+ get SHADOW_STATE_ACTIVE(): string;
1640
+ get SHADOW_STATE_SELECTED(): string;
1641
+ get SHAPE_RADIUS_NONE(): string;
1642
+ get SHAPE_RADIUS_XS(): string;
1643
+ get SHAPE_RADIUS_SM(): string;
1644
+ get SHAPE_RADIUS_MD(): string;
1645
+ get SHAPE_RADIUS_LG(): string;
1646
+ get SHAPE_RADIUS_XL(): string;
1647
+ get SHAPE_RADIUS_XXL(): string;
1648
+ get SHAPE_RADIUS_XXXL(): string;
1649
+ get SHAPE_RADIUS_FULL(): string;
1650
+ get TYPOGRAPHY_DISPLAY_EXTRA_LARGE_FONT_FAMILY(): string;
1651
+ get TYPOGRAPHY_DISPLAY_EXTRA_LARGE_FONT_SIZE(): string;
1652
+ get TYPOGRAPHY_DISPLAY_EXTRA_LARGE_FONT_WEIGHT(): string;
1653
+ get TYPOGRAPHY_DISPLAY_EXTRA_LARGE_LINE_HEIGHT(): string;
1654
+ get TYPOGRAPHY_DISPLAY_EXTRA_LARGE_LETTER_SPACING(): string;
1655
+ get TYPOGRAPHY_BODY_EXTRA_SMALL_FONT_FAMILY(): string;
1656
+ get TYPOGRAPHY_BODY_EXTRA_SMALL_FONT_SIZE(): string;
1657
+ get TYPOGRAPHY_BODY_EXTRA_SMALL_FONT_WEIGHT(): string;
1658
+ get TYPOGRAPHY_BODY_EXTRA_SMALL_LINE_HEIGHT(): string;
1659
+ get TYPOGRAPHY_BODY_EXTRA_SMALL_LETTER_SPACING(): string;
1660
+ get MOTION_DURATION_INSTANT(): string;
1661
+ get MOTION_DURATION_FAST(): string;
1662
+ get MOTION_DURATION_NORMAL(): string;
1663
+ get MOTION_DURATION_SLOW(): string;
1664
+ get MOTION_DURATION_SLOWER(): string;
1665
+ get MOTION_DELAY_NONE(): string;
1666
+ get MOTION_DELAY_SHORT(): string;
1667
+ get MOTION_EASING_BOUNCE(): string;
1668
+ get COLOR_INTERACTIVE_HOVER(): string;
1669
+ get COLOR_INTERACTIVE_PRESSED(): string;
1670
+ get COLOR_INTERACTIVE_DISABLED(): string;
1671
+ get COLOR_INTERACTIVE_FOCUS(): string;
1672
+ get COLOR_FEEDBACK_SUCCESS(): string;
1673
+ get COLOR_FEEDBACK_SUCCESS_CONTAINER(): string;
1674
+ get COLOR_FEEDBACK_ON_SUCCESS(): string;
1675
+ get COLOR_FEEDBACK_ON_SUCCESS_CONTAINER(): string;
1676
+ get COLOR_FEEDBACK_WARNING(): string;
1677
+ get COLOR_FEEDBACK_WARNING_CONTAINER(): string;
1678
+ get COLOR_FEEDBACK_ON_WARNING(): string;
1679
+ get COLOR_FEEDBACK_ON_WARNING_CONTAINER(): string;
1680
+ get COLOR_FEEDBACK_INFO(): string;
1681
+ get COLOR_FEEDBACK_INFO_CONTAINER(): string;
1682
+ get COLOR_FEEDBACK_ON_INFO(): string;
1683
+ get COLOR_FEEDBACK_ON_INFO_CONTAINER(): string;
1684
+ get COLOR_TEXT_PRIMARY(): string;
1685
+ get COLOR_TEXT_SECONDARY(): string;
1686
+ get COLOR_TEXT_DISABLED(): string;
1687
+ get COLOR_TEXT_INVERSE(): string;
1688
+ get COLOR_BORDER_DEFAULT(): string;
1689
+ get COLOR_BORDER_STRONG(): string;
1690
+ get COLOR_BORDER_SUBTLE(): string;
1691
+ get COLOR_BORDER_DISABLED(): string;
1692
+ get PALETTE_PREFIX(): string;
1693
+ get PALETTE_BRAND_50(): string;
1694
+ get PALETTE_BRAND_100(): string;
1695
+ get PALETTE_BRAND_200(): string;
1696
+ get PALETTE_BRAND_300(): string;
1697
+ get PALETTE_BRAND_400(): string;
1698
+ get PALETTE_BRAND_500(): string;
1699
+ get PALETTE_BRAND_600(): string;
1700
+ get PALETTE_BRAND_700(): string;
1701
+ get PALETTE_BRAND_800(): string;
1702
+ get PALETTE_BRAND_900(): string;
1703
+ get PALETTE_SECONDARY_50(): string;
1704
+ get PALETTE_SECONDARY_100(): string;
1705
+ get PALETTE_SECONDARY_200(): string;
1706
+ get PALETTE_SECONDARY_300(): string;
1707
+ get PALETTE_SECONDARY_400(): string;
1708
+ get PALETTE_SECONDARY_500(): string;
1709
+ get PALETTE_SECONDARY_600(): string;
1710
+ get PALETTE_SECONDARY_700(): string;
1711
+ get PALETTE_SECONDARY_800(): string;
1712
+ get PALETTE_SECONDARY_900(): string;
1713
+ get PALETTE_NEUTRAL_50(): string;
1714
+ get PALETTE_NEUTRAL_100(): string;
1715
+ get PALETTE_NEUTRAL_200(): string;
1716
+ get PALETTE_NEUTRAL_300(): string;
1717
+ get PALETTE_NEUTRAL_400(): string;
1718
+ get PALETTE_NEUTRAL_500(): string;
1719
+ get PALETTE_NEUTRAL_600(): string;
1720
+ get PALETTE_NEUTRAL_700(): string;
1721
+ get PALETTE_NEUTRAL_800(): string;
1722
+ get PALETTE_NEUTRAL_900(): string;
1723
+ get PALETTE_ERROR_50(): string;
1724
+ get PALETTE_ERROR_100(): string;
1725
+ get PALETTE_ERROR_200(): string;
1726
+ get PALETTE_ERROR_300(): string;
1727
+ get PALETTE_ERROR_400(): string;
1728
+ get PALETTE_ERROR_500(): string;
1729
+ get PALETTE_ERROR_600(): string;
1730
+ get PALETTE_ERROR_700(): string;
1731
+ get PALETTE_ERROR_800(): string;
1732
+ get PALETTE_ERROR_900(): string;
1733
+ get PALETTE_SUCCESS_50(): string;
1734
+ get PALETTE_SUCCESS_100(): string;
1735
+ get PALETTE_SUCCESS_200(): string;
1736
+ get PALETTE_SUCCESS_300(): string;
1737
+ get PALETTE_SUCCESS_400(): string;
1738
+ get PALETTE_SUCCESS_500(): string;
1739
+ get PALETTE_SUCCESS_600(): string;
1740
+ get PALETTE_SUCCESS_700(): string;
1741
+ get PALETTE_SUCCESS_800(): string;
1742
+ get PALETTE_SUCCESS_900(): string;
1743
+ get PALETTE_WARNING_50(): string;
1744
+ get PALETTE_WARNING_100(): string;
1745
+ get PALETTE_WARNING_200(): string;
1746
+ get PALETTE_WARNING_300(): string;
1747
+ get PALETTE_WARNING_400(): string;
1748
+ get PALETTE_WARNING_500(): string;
1749
+ get PALETTE_WARNING_600(): string;
1750
+ get PALETTE_WARNING_700(): string;
1751
+ get PALETTE_WARNING_800(): string;
1752
+ get PALETTE_WARNING_900(): string;
1753
+ get PALETTE_INFO_50(): string;
1754
+ get PALETTE_INFO_100(): string;
1755
+ get PALETTE_INFO_200(): string;
1756
+ get PALETTE_INFO_300(): string;
1757
+ get PALETTE_INFO_400(): string;
1758
+ get PALETTE_INFO_500(): string;
1759
+ get PALETTE_INFO_600(): string;
1760
+ get PALETTE_INFO_700(): string;
1761
+ get PALETTE_INFO_800(): string;
1762
+ get PALETTE_INFO_900(): string;
1763
+ get PALETTE_PENDING_50(): string;
1764
+ get PALETTE_PENDING_100(): string;
1765
+ get PALETTE_PENDING_200(): string;
1766
+ get PALETTE_PENDING_300(): string;
1767
+ get PALETTE_PENDING_400(): string;
1768
+ get PALETTE_PENDING_500(): string;
1769
+ get PALETTE_PENDING_600(): string;
1770
+ get PALETTE_PENDING_700(): string;
1771
+ get PALETTE_PENDING_800(): string;
1772
+ get PALETTE_PENDING_900(): string;
1773
+ get COMP_BUTTON_PRIMARY_BACKGROUND(): string;
1774
+ get COMP_BUTTON_PRIMARY_FOREGROUND(): string;
1775
+ get COMP_BUTTON_PRIMARY_BORDER(): string;
1776
+ get COMP_BUTTON_PRIMARY_BORDER_WIDTH(): string;
1777
+ get COMP_BUTTON_PRIMARY_RADIUS(): string;
1778
+ get COMP_BUTTON_PRIMARY_SHADOW(): string;
1779
+ get COMP_BUTTON_PRIMARY_PADDING_X(): string;
1780
+ get COMP_BUTTON_PRIMARY_PADDING_Y(): string;
1781
+ get COMP_BUTTON_SECONDARY_BACKGROUND(): string;
1782
+ get COMP_BUTTON_SECONDARY_FOREGROUND(): string;
1783
+ get COMP_BUTTON_SECONDARY_BORDER(): string;
1784
+ get COMP_BUTTON_SECONDARY_BORDER_WIDTH(): string;
1785
+ get COMP_BUTTON_SECONDARY_RADIUS(): string;
1786
+ get COMP_BUTTON_GHOST_BACKGROUND(): string;
1787
+ get COMP_BUTTON_GHOST_FOREGROUND(): string;
1788
+ get COMP_TAB_BACKGROUND(): string;
1789
+ get COMP_TAB_FOREGROUND(): string;
1790
+ get COMP_TAB_ACTIVE_FOREGROUND(): string;
1791
+ get COMP_TAB_ACTIVE_INDICATOR(): string;
1792
+ get COMP_TAB_BORDER(): string;
1793
+ get COMP_MODAL_BACKGROUND(): string;
1794
+ get COMP_MODAL_FOREGROUND(): string;
1795
+ get COMP_MODAL_BORDER(): string;
1796
+ get COMP_MODAL_SHADOW(): string;
1797
+ get COMP_MODAL_OVERLAY(): string;
1798
+ get COMP_MODAL_RADIUS(): string;
1799
+ get COMP_INPUT_BACKGROUND(): string;
1800
+ get COMP_INPUT_FOREGROUND(): string;
1801
+ get COMP_INPUT_BORDER(): string;
1802
+ get COMP_INPUT_BORDER_FOCUS(): string;
1803
+ get COMP_INPUT_PLACEHOLDER(): string;
1804
+ get COMP_INPUT_RADIUS(): string;
1805
+ get COMP_INPUT_PADDING_X(): string;
1806
+ get COMP_INPUT_PADDING_Y(): string;
1807
+ get COMP_CARD_BACKGROUND(): string;
1808
+ get COMP_CARD_FOREGROUND(): string;
1809
+ get COMP_CARD_BORDER(): string;
1810
+ get COMP_CARD_BORDER_WIDTH(): string;
1811
+ get COMP_CARD_RADIUS(): string;
1812
+ get COMP_CARD_SHADOW(): string;
1813
+ get COMP_CARD_PADDING(): string;
1814
+ get COMP_BADGE_BACKGROUND(): string;
1815
+ get COMP_BADGE_FOREGROUND(): string;
1816
+ get COMP_BADGE_BORDER(): string;
1817
+ get COMP_BADGE_BORDER_WIDTH(): string;
1818
+ get COMP_BADGE_RADIUS(): string;
1819
+ get COMP_BADGE_PADDING_X(): string;
1820
+ get COMP_BADGE_PADDING_Y(): string;
1821
+ get COMP_BADGE_ERROR_BACKGROUND(): string;
1822
+ get COMP_BADGE_ERROR_FOREGROUND(): string;
1823
+ get COMP_CHECKBOX_BORDER(): string;
1824
+ get COMP_CHECKBOX_BORDER_WIDTH(): string;
1825
+ get COMP_CHECKBOX_RADIUS(): string;
1826
+ get COMP_CHECKBOX_CHECKED_BACKGROUND(): string;
1827
+ get COMP_CHECKBOX_CHECKED_FOREGROUND(): string;
1828
+ get COMP_CHECKBOX_SIZE(): string;
1829
+ get COMP_CHECKBOX_LABEL_FOREGROUND(): string;
1830
+ get COMP_CHECKBOX_DISABLED_BACKGROUND(): string;
1831
+ get COMP_RADIO_BORDER(): string;
1832
+ get COMP_RADIO_BORDER_WIDTH(): string;
1833
+ get COMP_RADIO_SELECTED_BORDER(): string;
1834
+ get COMP_RADIO_SELECTED_INDICATOR(): string;
1835
+ get COMP_RADIO_SIZE(): string;
1836
+ get COMP_RADIO_LABEL_FOREGROUND(): string;
1837
+ get COMP_RADIO_DISABLED_BORDER(): string;
1838
+ get COMP_SELECT_BACKGROUND(): string;
1839
+ get COMP_SELECT_FOREGROUND(): string;
1840
+ get COMP_SELECT_BORDER(): string;
1841
+ get COMP_SELECT_BORDER_FOCUS(): string;
1842
+ get COMP_SELECT_RADIUS(): string;
1843
+ get COMP_SELECT_PADDING_X(): string;
1844
+ get COMP_SELECT_PADDING_Y(): string;
1845
+ get COMP_SELECT_MENU_BACKGROUND(): string;
1846
+ get COMP_SELECT_MENU_SHADOW(): string;
1847
+ get COMP_SELECT_MENU_RADIUS(): string;
1848
+ get COMP_SELECT_OPTION_HOVER(): string;
1849
+ get COMP_SELECT_PLACEHOLDER(): string;
1850
+ get COMP_TOAST_BACKGROUND(): string;
1851
+ get COMP_TOAST_FOREGROUND(): string;
1852
+ get COMP_TOAST_RADIUS(): string;
1853
+ get COMP_TOAST_SHADOW(): string;
1854
+ get COMP_TOAST_PADDING(): string;
1855
+ get COMP_TOAST_SUCCESS_BACKGROUND(): string;
1856
+ get COMP_TOAST_SUCCESS_FOREGROUND(): string;
1857
+ get COMP_TOAST_ERROR_BACKGROUND(): string;
1858
+ get COMP_TOAST_ERROR_FOREGROUND(): string;
1859
+ get COMP_TOAST_WARNING_BACKGROUND(): string;
1860
+ get COMP_TOAST_WARNING_FOREGROUND(): string;
1861
+ get COMP_TOAST_INFO_BACKGROUND(): string;
1862
+ get COMP_TOAST_INFO_FOREGROUND(): string;
1863
+ get COMP_TOAST_DISMISSIBLE(): string;
1864
+ get COMP_BLOB_EXPLORER_BACKGROUND(): string;
1865
+ get COMP_BLOB_EXPLORER_FOREGROUND(): string;
1866
+ get COMP_BLOB_EXPLORER_BORDER(): string;
1867
+ get COMP_BLOB_EXPLORER_RADIUS(): string;
1868
+ get COMP_BLOB_EXPLORER_PADDING(): string;
1869
+ get COMP_BLOB_EXPLORER_TOOLBAR_BACKGROUND(): string;
1870
+ get COMP_BLOB_EXPLORER_TOOLBAR_BORDER(): string;
1871
+ get COMP_BLOB_EXPLORER_SIDEBAR_BACKGROUND(): string;
1872
+ get COMP_BLOB_EXPLORER_SIDEBAR_WIDTH(): string;
1873
+ get COMP_BLOB_EXPLORER_SIDEBAR_BORDER(): string;
1874
+ get COMP_BLOB_EXPLORER_ITEM_BACKGROUND(): string;
1875
+ get COMP_BLOB_EXPLORER_ITEM_BACKGROUND_HOVER(): string;
1876
+ get COMP_BLOB_EXPLORER_ITEM_BACKGROUND_SELECTED(): string;
1877
+ get COMP_BLOB_EXPLORER_ITEM_FOREGROUND(): string;
1878
+ get COMP_BLOB_EXPLORER_ITEM_FOREGROUND_SECONDARY(): string;
1879
+ get COMP_BLOB_EXPLORER_ITEM_PADDING(): string;
1880
+ get COMP_BLOB_EXPLORER_ITEM_RADIUS(): string;
1881
+ get COMP_BLOB_EXPLORER_BREADCRUMB_FOREGROUND(): string;
1882
+ get COMP_BLOB_EXPLORER_BREADCRUMB_FOREGROUND_ACTIVE(): string;
1883
+ get COMP_BLOB_EXPLORER_BREADCRUMB_SEPARATOR(): string;
1884
+ get COMP_BLOB_EXPLORER_DETAIL_BACKGROUND(): string;
1885
+ get COMP_BLOB_EXPLORER_DETAIL_BORDER(): string;
1886
+ get COMP_BLOB_EXPLORER_DETAIL_WIDTH(): string;
1887
+ get COMP_BLOB_EXPLORER_EMPTY_FOREGROUND(): string;
1888
+ get COMP_BLOB_EXPLORER_EMPTY_ICON_COLOR(): string;
1889
+ private constructor();
1890
+ }
1891
+ }
1892
+ }
1893
+ export declare abstract class ThemeValidator {
1894
+ static readonly getInstance: () => typeof ThemeValidator.$metadata$.type;
1895
+ private constructor();
1896
+ }
1897
+ export declare namespace ThemeValidator {
1898
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1899
+ namespace $metadata$ {
1900
+ abstract class type extends KtSingleton<constructor>() {
1901
+ private constructor();
1902
+ }
1903
+ namespace type {
1904
+ class ValidationResult {
1905
+ constructor(valid: boolean, errors?: KtList<string>);
1906
+ get valid(): boolean;
1907
+ get errors(): KtList<string>;
1908
+ copy(valid?: boolean, errors?: KtList<string>): ThemeValidator.$metadata$.type.ValidationResult;
1909
+ toString(): string;
1910
+ hashCode(): number;
1911
+ equals(other: Nullable<any>): boolean;
1912
+ }
1913
+ namespace ValidationResult {
1914
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1915
+ namespace $metadata$ {
1916
+ const constructor: abstract new () => ValidationResult;
1917
+ }
1918
+ }
1919
+ }
1920
+ abstract class constructor {
1921
+ validate(definition: any/* ThemeDefinition */): ThemeValidator.$metadata$.type.ValidationResult;
1922
+ validateToken(token: any/* ThemeToken */): ThemeValidator.$metadata$.type.ValidationResult;
1923
+ isValidHexColor(hex: string): boolean;
1924
+ isValidTokenKey(key: string): boolean;
1925
+ validateCustomCss(css: string, policy?: any/* CssPolicyConfig */): KtList<string>;
1926
+ private constructor();
1927
+ }
1928
+ }
1929
+ }
1930
+ export declare function resolvedThemeFromJson(jsonStr: string): any/* ResolvedTheme */;
1931
+ export declare function resolvedThemeToJson(theme: any/* ResolvedTheme */): string;
1932
+ export declare function systemDefaultsLightJson(): string;
1933
+ export declare function systemDefaultsDarkJson(): string;
1934
+ export declare function systemDefaultsTokens(variant: string): KtMap<string, string>;