import { Reducer } from './Reducer';
declare const FIND = "FIND";
declare const QUERY = "QUERY";
export declare const fetchActions: {
    FIND: string;
    QUERY: string;
};
interface FetchAction {
    FIND: {
        path: string[];
        query: FlatObject;
        type: typeof FIND;
    };
    QUERY: {
        path: string[];
        payload: Content;
        type: typeof QUERY;
    };
}
declare const reducePersistence: Reducer<any, FetchAction[keyof FetchAction]>;
export default reducePersistence;
