import { TransformedToken } from 'style-dictionary/types';
/**
 * @name getHasAttribute
 * @type filter
 * @description only returns tokens of that have any of the specified attributes
 * @param attributes one more multiple attributes (`strings`)
 * @returns filter function
 */
export declare const getHasAttribute: (...attributes: string[]) => (token: TransformedToken) => boolean;
