import { Actions } from "./index"; import { Content } from '../interfaces/index'; export declare function ReadContentTestData(): (dispatch: any) => Promise; export interface CreateContentAction { type: Actions.CREATE_CONTENT; payload: any; } export declare const CreateContent: (content: any) => (dispatch: any, _getState: any) => Promise; export interface ReadContentAction { type: Actions.READ_CONTENT; payload: any; } export declare const ReadContent: (contents: any) => (dispatch: any, _getState: any) => Promise; export interface UpdateContentAction { type: Actions.UPDATE_CONTENT; payload: any; } export declare const UpdateContent: (content: any) => (dispatch: any, _getState: any) => Promise; export interface DeleteContentAction { type: Actions.DELETE_CONTENT; payload: any; } export declare const RemoveContent: (id: any) => (dispatch: any, _getState: any) => Promise;