export type OnboardingVersion = number | undefined;
/**
 * Onboarding components retrieve certain experiments from the backend,
 * rather than via {@link Core.create()}. These experiments toggle features
 * within the SDK depending on the onboarding version for that legal entity.
 *
 * Differently from Feature Flag Experiments, in this experiments are dynamic
 * and not flipped on and off in BE/Backoffice.
 * @param legalEntityId
 */
export declare const useVersion: () => {
    onboardingVersion: number;
};
