export declare function dir(parentDir: string): {
    latest(): Promise<string>;
    semver(options?: {
        sort?: "ASC" | "DESC" | undefined;
    }): Promise<string[]>;
};
