/**
 * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */
/**
 * Return negated glob or list of glob expressions.
 * @param globs list of globs or single glob expression
 * @return negated list of globs or single glob expression
 */
export declare function negate<T extends string | string[]>(globs: T): T;
/**
 * Return a list of globs prefixed with a token.
 * @param prefix the prefix to add
 * @param globs list of globs
 * @return the list of prefixed globs
 */
export declare function prefix(prefix: string, globs: string[]): string[];
