import type webpack from "webpack";
import type { IGatsbyState } from "../../internal";
export declare function getSSRChunkHashes({ stats, components, }: {
    stats: webpack.Stats;
    components: IGatsbyState["components"];
}): {
    templateHashes: Record<string, string>;
    renderPageHash: string;
};
