type SymlinkExtendedOptions = { /** * @default true */ override?: boolean; /** * Symlink everthing inside the `target` folder rather than the `target` itself, * optionally pass a glob that points to the desired "sub" targets */ onlyTargetContent?: boolean | string; }; /** * Extended `node:fs/promises.symlink` */ export declare function fsSymlink(target: string, dest: string, options?: SymlinkExtendedOptions): Promise; export default fsSymlink;