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