export declare const DbClusterNetworkType: {
    readonly Ipv4: "IPV4";
    readonly Dual: "DUAL";
};
/**
 * The network type of the DB cluster.
 */
export type DbClusterNetworkType = (typeof DbClusterNetworkType)[keyof typeof DbClusterNetworkType];
export declare const GlobalClusterEngine: {
    readonly Neptune: "neptune";
};
/**
 * The name of the database engine.
 */
export type GlobalClusterEngine = (typeof GlobalClusterEngine)[keyof typeof GlobalClusterEngine];
