import type fs from 'node:fs'; import { type Result } from '@zokugun/xtry'; export declare function createSymlink(source: string, target: string, type?: fs.symlink.Type | null): Promise>; export declare const ensureSymlink: typeof createSymlink;