import { type Action, type UnknownAction } from '../actions'; export declare const BuilderEditMode: { readonly BUILD: "build"; readonly CONTENT: "content"; readonly INTERACT: "interact"; }; export type BuilderEditMode = (typeof BuilderEditMode)[keyof typeof BuilderEditMode]; export type State = BuilderEditMode | null; export declare function getInitialState(): State; export declare function reducer(state: State | undefined, action: Action | UnknownAction): State; //# sourceMappingURL=builder-edit-mode.d.ts.map