import { ItemAttributes, StrigifySKUAttributes } from './types'; import { ISchema } from './types/schema'; export type StringifyOptions = { determineUniqueHat?: boolean; }; /** * Stringifies item object into item name */ export default function (schema: ISchema, attributes: StrigifySKUAttributes | ItemAttributes, options?: StringifyOptions): string;