import { DocumentFolderModel } from '../../models/document-folder.model'; import { DocumentFolderMoveDestinationModel } from './document-folder-move-destination.model'; export declare class DocumentFolderMoveUtility { static readonly DEPTH_PREFIX: string; static getBlockedIds(folder: DocumentFolderModel): number[]; static buildDestinations(folder: DocumentFolderModel, folders: DocumentFolderModel[], rootId: number, rootDisplayName: string): DocumentFolderMoveDestinationModel[]; static hasEnabledDestinations(destinations: DocumentFolderMoveDestinationModel[]): boolean; static findEnabledDestination(destinations: DocumentFolderMoveDestinationModel[], id: any): DocumentFolderMoveDestinationModel | null; static isSameId(idA: any, idB: any): boolean; private static pushDestinations; }