export declare const FileInfoTypeEnum: {
    readonly Reg: "REG";
    readonly Dir: "DIR";
};
export type FileInfoTypeEnum = typeof FileInfoTypeEnum[keyof typeof FileInfoTypeEnum];
