import { Actions } from "./index"; import { Comment } from '../interfaces/index'; export declare function ReadCommentTestData(): (dispatch: any) => Promise; export interface ReadCommentAction { type: Actions.READ_COMMENT; payload: any; } export declare const ReadComment: (comments: any) => (dispatch: any, _getState: any) => Promise; export interface CreateCommentAction { type: Actions.CREATE_COMMENT; payload: any; } export declare const CreateComment: (comment: any) => (dispatch: any, _getState: any) => Promise; export interface UpdateCommentAction { type: Actions.UPDATE_COMMENT; payload: any; } export declare const UpdateComment: (comment: any) => (dispatch: any, _getState: any) => Promise; export interface DeleteCommentAction { type: Actions.DELETE_COMMENT; payload: any; } export declare const RemoveComment: (id: any) => (dispatch: any, _getState: any) => Promise; export interface ResetCommentAction { type: Actions.RESET_COMMENT; payload: any; } export declare const ResetComment: () => (dispatch: any, _getState: any) => Promise;