import { Input } from '@pulumi/pulumi'; import { ResourceInfoWithSub } from '../types'; export type PeeringDirectionType = 'Unidirectional' | 'Bidirectional'; export type PeeringOptions = { allowForwardedTraffic?: boolean; allowVirtualNetworkAccess?: boolean; allowGatewayTransit?: boolean; syncRemoteAddressSpace?: boolean; useRemoteGateways?: boolean; doNotVerifyRemoteGateways?: boolean; }; export type VnetPeeringType = { vnetInfo: Input; options?: PeeringOptions; }; export interface VNetPeeringProps { from: VnetPeeringType; to: VnetPeeringType; direction?: PeeringDirectionType; } declare const _default: ({ direction, from, to, }: VNetPeeringProps) => void; export default _default;