import type fs from 'node:fs'; import { type Result } from '@zokugun/xtry'; import { type FsResult } from '../types/fs-result.cjs'; export declare function createSymlink(source: string, target: string, type?: fs.symlink.Type | null): Result; export declare function symlinkPaths(source: string, target: string): FsResult<{ toCwd: string; toDst: string; }>; export declare const ensureSymlink: typeof createSymlink;