import { type Reducer } from 'redux'; import type { FormsState } from './types/index.js'; export declare const INITIAL_STATE: FormsState; export declare const getFormsSchemas: (state?: FormsState) => FormsState['result']; export declare const getFormsError: (state?: FormsState) => FormsState['error']; export declare const getFormsIsLoading: (state?: FormsState) => FormsState['isLoading']; export declare const getSubmitFormDataIsLoading: (state?: FormsState) => FormsState['isSubmitFormLoading']; export declare const getSubmitFormDataError: (state?: FormsState) => FormsState['submitFormError']; /** * Reducer for forms state. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const formsReducer: Reducer; export default formsReducer;