import type { CloudConfig } from '@stacksjs/ts-cloud'; import type { CloudOptions } from '../types'; /** * Cloud orchestrator using ts-cloud InfrastructureGenerator. * * This replaces the previous CDK-based Stack class. Infrastructure is now * generated as CloudFormation templates via ts-cloud and deployed through * the deploy module. */ export declare class Cloud { props: CloudOptions; constructor(cloudConfig: CloudConfig, props: CloudOptions); generate(): string; shouldDeployApi(): boolean; }