import type { LiveEstateAssessment, StackCollection } from './types'; export interface CloudFormationReader { send(command: unknown): Promise; } /** * Reads CloudFormation only. It deliberately does not call DetectStackDrift, * mutate resources, upload templates, or send account data to CDK Insights. */ export declare const assessLiveEstate: (client: CloudFormationReader, localStacks: StackCollection, options?: { region?: string; stackNames?: string[]; }) => Promise;