@hauser1993/kyc-sdk
Version:
Your custom version of Ballerine web UI SDK - an open-source infrastructure for user identity and risk management. Compose verification processes for any vertical and geography using modular building blocks, components, and 3rd party integrations.
16 lines • 669 B
TypeScript
import { FlowsGeneralTheme } from '../../types/BallerineSDK';
import { IConfigurationComponents, TStepsConfigurations } from '../contexts/configuration';
import { ObjectValues } from '../contexts/app-state/types';
export interface IUIPackTheme {
general: FlowsGeneralTheme;
components: IConfigurationComponents;
steps: TStepsConfigurations;
}
export declare const UIPackType: {
readonly default: "default";
readonly future: "future";
};
export declare const UIPackTypes: ("default" | "future")[];
export type TUIPackType = ObjectValues<typeof UIPackType>;
export type TUIPacks = Record<TUIPackType, IUIPackTheme>;
//# sourceMappingURL=types.d.ts.map