import { ISchema } from '../types/schema';
/**
 * Iterates over effects object to get matching effect.
 */
export default function (name: string, attributes: {
    wear: any | null;
    schema: ISchema;
}): string | void;
