import type { BundlerFrontendRuntimeConfig, NormalizedBundlerLogger } from "../../../types.d.ts"; type RuntimeStepState = { logger: NormalizedBundlerLogger; }; declare function resolveRuntimeLogger(config: BundlerFrontendRuntimeConfig): NormalizedBundlerLogger; declare function timeRuntimeStep(state: RuntimeStepState, label: string, run: () => Promise): Promise; export { resolveRuntimeLogger, timeRuntimeStep, }; //# sourceMappingURL=logging.d.ts.map