import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import * as cdk from 'aws-cdk-lib';
import * as constructs from 'constructs';
import { R53Resolverendpoints } from './dnsResolvers';
export interface CentralResolverRulesProps {
    readonly domains: string[];
    readonly resolvers: R53Resolverendpoints;
    readonly vpc: ec2.Vpc | ec2.IVpc;
    readonly vpcSearchTag?: cdk.Tag | undefined;
}
export declare class CentralResolverRules extends constructs.Construct {
    constructor(scope: constructs.Construct, id: string, props: CentralResolverRulesProps);
}
