/// <reference types="rodux" />
import Rodux from "@rbxts/rodux";
import { ActionDecrementValue, ActionIncrementValue, ActionLowercaseText, ActionSetText, ActionSetValue, ActionUppercaseText } from "./story-actions";
declare const DefaultStoryData: {
    Text: string;
    Value: number;
};
export declare type IStoryData = typeof DefaultStoryData;
export declare type StoryActions = ActionDecrementValue | ActionIncrementValue | ActionLowercaseText | ActionSetText | ActionSetValue | ActionUppercaseText;
export declare const StoryReducer: Rodux.Reducer<{
    Text: string;
    Value: number;
}, StoryActions>;
export default StoryReducer;
