import { type Logger } from "backfill-logger"; import { type Config } from "backfill-config"; import { type BuildCommand } from "./commandRunner.js"; export { createDefaultConfig, type Config, type ICacheStorage, } from "backfill-config"; export declare function backfill(config: Config, buildCommand: BuildCommand, hashSalt: string, logger: Logger): Promise; export declare function main(): Promise;