/** * Verification Templates * * Templates that generate verification suggestions for each category. * BitNet classifies the resource, templates generate the commands. */ import type { VerificationSuggestion } from '../core/mutation.js'; import type { VerificationCategory } from './categories.js'; /** * Resource context extracted from Terraform plan */ export interface ResourceContext { resourceType: string; address: string; attributes: Record; region?: string; accountId?: string; } /** * Generate verification suggestions for a resource */ export declare function generateVerificationSuggestions(category: VerificationCategory, context: ResourceContext): VerificationSuggestion[]; //# sourceMappingURL=templates.d.ts.map