import type { Result } from '@stacksjs/error-handling'; export declare function move(src: string | string[], dest: string, options?: MoveOptions): Promise>; export declare function rename(from: string, to: string, options?: MoveOptions): Promise>; declare interface MoveOptions { overwrite?: boolean }