export interface FileMove {
    fileName: string;
    originalPath: string;
    newPath: string;
}
export interface OrganizationHistory {
    timestamp: string;
    moves: FileMove[];
}
export interface DeleteHistory {
    timestamp: string;
    deletedFiles: string[];
}
export declare function organizeFolder(folderPath: string): Promise<void>;
export declare function deleteUnnecessaryFiles(folderPath: string): Promise<void>;
export declare function undoOrganize(folderPath: string): Promise<void>;
//# sourceMappingURL=organizer.d.ts.map