export declare const DEFAULT_PACK_IDS: readonly ["airic-core", "airic-packsmith"]; export declare const PROJECT_ARTIFACT_DIRECTORIES: readonly ["modes", "roles", "procedures", "standards", "tool-policies", "decision-boundaries", "precedents", "reflection-lenses"]; export interface SeedPackReference { version: string; sha256: string; } export interface SeedReference { source: string; version: string; packs: Record; } export interface ManagedPack { id: string; installed: boolean; enabled: boolean; official: boolean; } export declare function initializeProject(cwd: string, releaseRoot: string, _seedVersion?: string): Promise; export declare function seedVersion(releaseRoot: string): Promise; export declare function listManagedPacks(cwd: string): Promise; export declare function installManagedPack(cwd: string, releaseRoot: string, id: string): Promise; export declare function enableManagedPack(cwd: string, id: string): Promise; export declare function disableManagedPack(cwd: string, id: string): Promise; export declare function seedReference(releaseRoot: string): Promise; export declare function seedPackRoot(releaseRoot: string): string;