import Attributes from '../parseString/Attributes'; import { ISchema } from '../types/schema'; /** * Signalizes if `The` is at the start of name. * Only happens to hats with unique quality. */ export default function isUniqueHat(schema: ISchema, name: string, attributes?: Attributes): boolean; export declare function isUniqueHatException(schema: ISchema, name: string, exact: boolean): boolean; export declare function getUniqueHatExceptions(schema: ISchema): string[]; export declare function findUniqueHatExceptions(schema: ISchema): string[];