import { RxHttpActionTypes, RxHttpRequestAction } from 'redux-rx-http';
export declare const INVITE_USER: RxHttpActionTypes;
export interface InviteUserAction {
    type: typeof INVITE_USER;
    email: string;
    partner: string;
}
export declare const inviteUser: (email: string, partner: string) => RxHttpRequestAction;
