import { Action } from '@ngrx/store'; import { CharacterLimit } from '../../models/character-limit'; export interface State { config: CharacterLimit; } export declare const initialState: State; export declare const characterConfigReducer: import("@ngrx/store").ActionReducer>; export declare function reducer(state: State | undefined, action: Action): State;