import { type BigIntStats } from 'node:fs'; import { type FsResult } from '../types/fs-result.mjs'; export declare function checkPathsSync(source: string, destination: string, funcName: 'copy' | 'move', options: { dereference?: boolean; }): FsResult<{ srcStat: BigIntStats; destStat: BigIntStats | null; isChangingCase?: boolean; }>;