export type TerraformProvider = 'aws' | 'azure' | 'gcp'; export interface TerraformExportOptions { provider: TerraformProvider; awsRegion?: string; azureResourceGroup?: string; azureLocation?: string; gcpProject?: string; gcpRegion?: string; includeSecurityRules?: boolean; parentInterface?: string; } export interface TerraformOutput { mainTf: string; variablesTf: string; outputsTf: string; } export declare const DEFAULT_OPTIONS: Required;