import { Output } from '@pulumi/pulumi'; import { NamingType, ResourceGroupInfo, ResourceGroupWithIdInfo, ResourceInfo, ResourceInfoWithSub } from '../../types'; export declare const getResourceInfoFromId: (id: string) => ResourceInfoWithSub | undefined; export declare const getNameFromId: (id: string) => string | undefined; /** The method to get Resource group Name*/ export declare const getRGId: (group: ResourceGroupInfo) => Output; export declare const getRGInfo: (name: NamingType) => ResourceGroupWithIdInfo; export declare const getStorageInfo: (name: NamingType) => ResourceInfo; export declare const getAutomationAccountInfo: (name: NamingType) => ResourceInfo; export declare const getAppConfigInfo: (name: NamingType) => ResourceInfo; export declare const getApimInfo: (name: NamingType) => ResourceInfo; export declare const getAksInfo: (name: NamingType) => ResourceInfo; export declare const getAppInsightInfo: (name: NamingType) => ResourceInfo; export declare const getLogWpInfo: (name: NamingType) => ResourceInfo; export declare const getRedisCacheInfo: (name: NamingType) => ResourceInfo; export declare const getServiceBusInfo: (name: NamingType) => ResourceInfo; export declare const getSignalRInfo: (name: NamingType) => ResourceInfo; export declare const getSqlServerInfo: (name: NamingType) => ResourceInfo; export declare const getPostgresqlInfo: (name: NamingType) => ResourceInfo; export declare const getMySqlInfo: (name: NamingType) => ResourceInfo; export declare const getFirewallInfo: (name: NamingType) => ResourceInfo; export declare const getVMInfo: (name: NamingType) => ResourceInfo; export declare const getVnetInfo: (name: NamingType) => ResourceInfo; export declare const getVnetIdFromSubnetId: (subnetId: string) => string; export declare const getSubnetIdByName: (subnetName: string, vnetAndGroupName: NamingType) => Output; export declare const getIpAddressInfo: ({ name, groupName, }: { name: string; groupName: NamingType; }) => ResourceInfo; export declare const getKeyVaultInfo: (name: NamingType) => ResourceInfo; export declare const getCdnProfileInfo: (name: NamingType) => ResourceInfo; export declare const getAcrInfo: (name: NamingType) => ResourceInfo; export declare const getCertOrderInfo: (name: NamingType) => ResourceInfo;