import { type Action, type UnknownAction } from '../actions'; export type State = boolean; export declare function getInitialState(): State; export declare function getIsInBuilder(state: State): boolean; export declare function reducer(state: State | undefined, action: Action | UnknownAction): State; //# sourceMappingURL=is-in-builder.d.ts.map