declare const unslugName: (name: string) => string; declare const setAttributeIfEmpty: (element: HTMLElement, attribute: string, value: string) => string; declare const removeAttributesIf: (element: HTMLElement, attribute: string, valueCheck: string | undefined, cleanAttributes: string | string[]) => boolean; declare const ifAttribute: (element: HTMLElement, attribute: string, valueCheck?: string) => boolean; declare const hashValue: (value: string) => string; declare const hashRandomValue: (value?: string) => string; export { hashRandomValue, hashValue, removeAttributesIf, setAttributeIfEmpty, ifAttribute, unslugName, };