import { Nullable } from '../Nullable';
export interface SPFile {
    CheckInComment: string;
    CheckOutType: number;
    ContentTag: string;
    CustomizedPageStatus: number;
    ETag: string;
    Exists: boolean;
    IrmEnabled: boolean;
    Length: string;
    Level: number;
    LinkingUri: Nullable<string>;
    LinkingUrl: string;
    MajorVersion: number;
    MinorVersion: number;
    Name: string;
    ServerRelativeUrl: string;
    TimeCreated: string;
    TimeLastModified: string;
    Title: Nullable<string>;
    UIVersion: number;
    UIVersionLabel: string;
    UniqueId: string;
}
