import type { ScaffoldDates } from "./priming.js"; export type ScaffoldTier = "rich" | "mini"; export declare function resolveScaffoldTier(vaultName: string): ScaffoldTier; export interface SeedFigmentSpec { relativePath: string; title: string; purpose: string; body: string; } export declare function renderSeedFigment(spec: SeedFigmentSpec, dates?: ScaffoldDates | undefined): string; export interface TierPayload { tier: ScaffoldTier; writesMeshProps: boolean; seedFigments: readonly SeedFigmentSpec[]; } export declare const TIER_PAYLOADS: Record; export declare function payloadForVault(vaultName: string): TierPayload; //# sourceMappingURL=tier-payloads.d.ts.map