import { useQuestionnaireStep } from './useQuestionnaireStep.ts'; export type QuestionnaireStepContextValue = ReturnType; export declare const useQuestionnaireStepContext: () => { hydratedState: { setLanguage: (lang: import('../../index.ts').Locale) => void; poweredByTaxbit: boolean | undefined; action: { onClick: () => void; label: string; disabled: boolean; }; back: { onClick: () => void; label: string; } | undefined; isVerifying: boolean; errorMessage: string | undefined; infoMessage: string | undefined; questionnaire?: import('../../index.ts').QuestionnaireProp | undefined; key: string; subTitle?: string | undefined; title: string; language: import('../../index.ts').Locale; items: import('../types.ts').HydratedItem[]; labels?: import('../types.ts').HydratedStateLabels | undefined; } | null; }, QuestionnaireStepContextProvider: import('react').Provider<{ hydratedState: { setLanguage: (lang: import('../../index.ts').Locale) => void; poweredByTaxbit: boolean | undefined; action: { onClick: () => void; label: string; disabled: boolean; }; back: { onClick: () => void; label: string; } | undefined; isVerifying: boolean; errorMessage: string | undefined; infoMessage: string | undefined; questionnaire?: import('../../index.ts').QuestionnaireProp | undefined; key: string; subTitle?: string | undefined; title: string; language: import('../../index.ts').Locale; items: import('../types.ts').HydratedItem[]; labels?: import('../types.ts').HydratedStateLabels | undefined; } | null; } | undefined>;