import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface AccountNetworkProperties {
    readonly networkName: string;
    readonly vpcId: string;
    readonly subnet_ids: Array<string>;
    readonly security_group_ids: Array<string>;
}
export interface AccountNetworkProps extends AccountNetworkProperties {
    readonly serviceToken: string;
}
export declare class AccountNetwork extends CustomResource {
    constructor(scope: Construct, id: string, props: AccountNetworkProps);
    networkId(): string;
}
