export declare const FETCH_START = "RA/FETCH_START"; export interface FetchStartAction { readonly type: typeof FETCH_START; } export declare const fetchStart: () => FetchStartAction; export declare const FETCH_END = "RA/FETCH_END"; export interface FetchEndAction { readonly type: typeof FETCH_END; } export declare const fetchEnd: () => FetchEndAction; export declare const FETCH_ERROR = "RA/FETCH_ERROR"; export interface FetchErrorAction { readonly type: typeof FETCH_ERROR; } export declare const fetchError: () => FetchErrorAction; export declare const FETCH_CANCEL = "RA/FETCH_CANCEL"; export interface FetchCancelAction { readonly type: typeof FETCH_CANCEL; } export declare const fetchCancel: () => FetchCancelAction;