export interface IdentifyElement { (element: HTMLElement): string; } export declare const generateElementId: IdentifyElement; export declare const identifyElement: (identify?: IdentifyElement) => (element: HTMLElement) => string; export declare const identifyElements: (elements: Array, identify?: IdentifyElement) => void; export declare const useIdentifiedElements: (elements: Array, identify?: IdentifyElement) => Record; export default useIdentifiedElements;