import { type Reducer } from 'redux'; import type { BrandsState } from './types/index.js'; export declare const INITIAL_STATE: BrandsState; export declare const getError: (state: BrandsState) => BrandsState['error']; export declare const getIsLoading: (state: BrandsState) => BrandsState['isLoading']; export declare const getResult: (state: BrandsState) => BrandsState['result']; /** * Reducer for brands state. * * @param state - Current redux state. * @param action - Action dispatched. * * @returns New state. */ declare const brandsReducer: Reducer; export default brandsReducer;