import type { IStaff } from './staff'; import { Joi } from '../helpers'; export declare const STAFF_UPDATED: "ORGANISATIONS/STAFF_UPDATED"; export interface IStaffUpdatedAction { type: typeof STAFF_UPDATED; payload: IStaff; } export declare const staffUpdatedActionSchema: Joi.ObjectSchema; export declare const staffUpdated: import("../helpers").ITopicBoundActionCreator;