export declare const CHANGE_DISPLAY_OPTIONS = "CHANGE_DISPLAY_OPTIONS"; export declare function changeDisplayOptions(options: any): { type: string; payload: any; }; export declare const REPORT_ERROR = "REPORT_ERROR"; export declare function reportError(msg: any): { type: string; payload: any; }; export declare const CLEAR_ERROR = "CLEAR_ERROR"; export declare function clearError(): { type: string; }; export declare const CHANGE_SELECTED_TYPEINFO = "CHANGE_SELECTED_TYPEINFO"; export declare function changeSelectedTypeInfo(type: any): { type: string; payload: any; };