export interface InvitationPendingDictionary {
    [index: string]: Invitation;
}
export declare class Invitation {
    email: string;
    sentOn?: Date;
    sentBy?: string;
    constructor(data?: any);
    postPayload(): any;
}
