import { Input } from '@pulumi/pulumi'; import { KeyVaultInfo, WithNamedType, LogInfo } from '../types'; interface ThreatProtectionProps extends WithNamedType { targetResourceId: Input; } export declare const createThreatProtection: ({ name, targetResourceId, }: ThreatProtectionProps) => import("@pulumi/azure-native/security/advancedThreatProtection").AdvancedThreatProtection; export declare const getLogInfo: (groupName: string, vaultInfo?: KeyVaultInfo | undefined) => LogInfo; export {};