import { TypedHash } from "../TypedHash";
export interface FolderField {
    Exists: boolean;
    IsWOPIEnabled: boolean;
    ItemCount: number;
    Name: string;
    ServerRelativeUrl: string;
    TimeCreated: string;
    TimeLastModified: string;
    UniqueId: string;
    ProgID?: string;
    ListItemAllFields?: TypedHash<any>;
}
