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