/**
 * @function copyFileAtomic
 * @memberof fsn/nextra
 * @param source The path to the file you want to copy
 * @param destination The path to the file destination
 * @param options The write options or the encoding string.
 */
export declare function copyFileAtomic(source: string, destination: string): Promise<void>;
