import type { IStaff } from './staff'; import { Joi } from '../helpers'; export declare const NEW_STAFF: "ORGANISATIONS/NEW_STAFF"; export interface INewStaffAction { type: typeof NEW_STAFF; payload: IStaff; } export declare const newStaffActionSchema: Joi.ObjectSchema; export declare const newStaff: import("../helpers").ITopicBoundActionCreator;