import { ITheTime } from '../../Services/Time/Interfaces';
import { IUser } from '../../Services/Users/IUserInterfaces';
export declare type IActionStatus = '1. Created' | '3. Reviewing' | '5. Complete';
export declare const ActionStatus: IActionStatus[];
export interface IPlannerTask {
    userId: string;
    plannerId: string;
    ItemId: string;
}
export interface IActionItem {
    Id: any;
    Title: string;
    Primary: number[];
    Secondary?: number[];
    FollowupDate: string;
    Notified: string;
    FollowupComments: string;
    Status: IActionStatus;
    WebURL: string;
    LibraryName: string;
    PageID: string;
    PlannerTasks: IPlannerTask[];
    searchString: string;
    meta: string[];
    Created: any;
    Modified: any;
    Author: any;
    Editor: any;
    timeCreated: ITheTime;
    timeModified: ITheTime;
    bestCreate: string;
    bestMod: string;
    author: IUser;
    editor: IUser;
    Attachments?: boolean;
}
