export declare function compareSnapshots({ actualPath, baselinePath, diffPath, threshold, }: {
    actualPath: string;
    baselinePath: string;
    diffPath: string;
    threshold?: number;
}): number;
