export declare class AjaxListActions { static readonly LOAD_STARTED: string; static readonly LOAD_SUCCEEDED: string; static readonly LOAD_FAILED: string; loadList(listType: any, params?: {}): { type: string; meta: { listType: any; }; params: {}; }; loadSucceeded(listType: any, payload: any): { type: string; meta: { listType: any; }; payload: any; }; loadFailed(listType: any, error: any): { type: string; meta: { listType: any; }; error: any; }; submitForm(listType: any, form: any): { type: string; meta: { listType: any; }; form: any; }; }