import type { StackCollection } from '../../intelligence/types'; export interface StackLoadOptions { synth?: boolean; outDir?: string; } export declare const loadStacks: (options?: StackLoadOptions) => StackCollection; export declare const resourceCountOf: (stacks: StackCollection) => number; export declare const readJsonFile: (filePath: string) => unknown; export declare const writeJsonFile: (filePath: string, value: unknown) => void;