export declare type MarkAllRead = { type: "inbox/MARK_ALL_READ"; }; export declare type MarkAllReadPending = { type: "inbox/MARK_ALL_READ/PENDING"; }; export declare type MarkAllReadError = { type: "inbox/MARK_ALL_READ/ERROR"; }; export declare type MarkAllReadDone = { type: "inbox/MARK_ALL_READ/DONE"; payload: { ids: string[]; }; }; export declare const INBOX_MARK_ALL_READ = "inbox/MARK_ALL_READ"; export declare const INBOX_MARK_ALL_READ_PENDING = "inbox/MARK_ALL_READ/PENDING"; export declare const INBOX_MARK_ALL_READ_DONE = "inbox/MARK_ALL_READ/DONE"; export declare const INBOX_MARK_ALL_READ_ERROR = "inbox/MARK_ALL_READ/ERROR"; export declare const markAllRead: () => MarkAllRead; export declare const markAllReadPending: () => MarkAllReadPending; export declare const markAllReadError: () => MarkAllReadError; interface MarkAllReadDonePayload { ids: string[]; } export declare const markAllReadDone: (payload: MarkAllReadDonePayload) => MarkAllReadDone; export {}; //# sourceMappingURL=mark-all-read.d.ts.map