type Method = 'put' | 'post' | 'delete' | 'get'; export type ActionRequest = { url: string; method: Method; body: any; description: string; matchers?: MatcherConfig; ignoreRequest?: boolean; }; export type MatcherConfig = { modelName: string; id: number; fields: FieldMatcher; }; export type FieldMatcher = { [requestFieldName: string]: string; }; export type ActionMessageType = 'error' | 'alert' | 'info' | 'notify'; export declare const getActionMessage: (response: any) => { type: ActionMessageType; message: string; } | null; export {};