import { SymLinkType } from './createSymlink';
/**
 * Creates a soft file link atomically.
 * @function symlinkAtomic
 * @memberof fsn/nextra
 * @param source The source path of the file
 * @param destination The destination path of the file
 * @param type The type of symlink you are creating
 */
export declare function symlinkAtomic(source: string, destination: string, type?: SymLinkType): Promise<void>;
