import { dhashFromImageData } from './hash/dhash';
export { distance } from './utils/distance';
export { dhashFromImageData };
export interface ImageDataLike {
    width: number;
    height: number;
    data: Uint8Array | Uint8ClampedArray;
}
export declare const getImageData: (path: string) => Promise<ImageDataLike>;
export declare const dhash: (image: string | ImageDataLike) => Promise<string>;
