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