export function getStack(state: any): any; export function getAddQueue(state: any): any; export function getDelQueue(state: any): any; export function setStack(value: any): ((dispatch: any, getState: any) => void) | { type: string; payload: any; }; export function addNotification(notification: any): { type: string; payload: any; }; export function delNotification(id: any): { type: string; payload: any; }; export namespace actionTypes { const SET_STACK: string; const ADD_NOTIFICATION: string; const DEL_NOTIFICATION: string; } export namespace reducers { export { stack }; export { addQueue }; export { delQueue }; } declare function stack(state: readonly any[] | undefined, action: any): any; declare function addQueue(state: readonly any[] | undefined, action: any): readonly any[]; declare function delQueue(state: readonly any[] | undefined, action: any): readonly any[]; export {};