///
import type { StepUpAuthenticationState } from './useStepUpAuthentication.types';
export type LogContext = {
environmentId: string;
userId: string | undefined;
};
export declare const useStepUpState: () => {
logContext: LogContext;
resetState: () => void;
setError: (errorMessage: string) => void;
setLoading: () => void;
setState: import("react").Dispatch>;
setSuccess: (patch?: Partial) => void;
state: StepUpAuthenticationState;
};