import { type FsVoidResult } from '../types/fs-void-result.mjs'; type MoveOptions = { dereference?: boolean; overwrite?: boolean; clobber?: boolean; }; export declare function move(source: string, destination: string, options?: MoveOptions): FsVoidResult; export {};