/**
 * Creates a symlink.
 *
 * @category Node : File
 * @category Package : @augment-vir/node
 * @package [`@augment-vir/node`](https://www.npmjs.com/package/@augment-vir/node)
 */
export declare function createSymlink({ linkTo, symlinkPath, }: {
    /**
     * Path that the symlink will link to. If relative, it will be linked relative to the symlink
     * location.
     */
    linkTo: string;
    /** The location and name the symlink file to be created. */
    symlinkPath: string;
}): Promise<void>;
