interface BulkMoveDialogProps {
    open: boolean;
    onClose: () => void;
}
/**
 * "Move elements to" modal for the bulk actions bar. Moves the current
 * selection (assets and/or folders) into the picked destination folder via
 * `POST /upload/actions/bulk-move`. The mutation invalidates the asset list,
 * folder list and the sidebar folder-structure, so both panes refresh on
 * success. On failure the modal stays open so the user can retry or cancel.
 */
export declare const BulkMoveDialog: ({ open, onClose }: BulkMoveDialogProps) => import("react/jsx-runtime").JSX.Element;
export {};
