import type { Actions } from './actions'; import type { SettingsState } from './types'; /** * The default state for the settings options store. */ export declare const DEFAULT_STATE: SettingsState; declare const reducer: (state: SettingsState | undefined, action: Actions) => SettingsState; export default reducer; //# sourceMappingURL=reducer.d.ts.map