import { RollupDef } from "./core.mjs"; declare const DEFAULT_ROLLUPS: readonly RollupDef[]; /** * Canonical-primary rollups (ADR-0017 / ADR-0018). Opt-in — kept out of * `DEFAULT_ROLLUPS` because they only pay off once the consumer queries by * `queryCanonical` and wires the read seams (`resolveExtra` / * `canonicalSource`). Hosts opt in by concatenating these onto their def list * (CLI: `gscdump rollups --with-canonical`). */ declare const CANONICAL_ROLLUPS: readonly RollupDef[]; export { CANONICAL_ROLLUPS, DEFAULT_ROLLUPS };