import * as constructs from 'constructs';
export declare enum MetaDataTypes {
    COMMENTS = "COMMENTS",
    RAWTYPES = "RAWTYPES"
}
export interface IJDBCTargetObject {
    connectionName?: string;
    exclusions?: string[];
    path?: string;
    enableAdditionalMetadata?: string[];
}
export interface JDBCTargetProps {
    readonly exclusions?: string[];
    readonly connectionName?: string;
    readonly enableAdditionalMetadata: MetaDataTypes[];
}
/**
 * This class is incomplete. It will not run. the Class needs to exisit
 * so, as the add crawler method requires it.
 * TODO:
 */
export declare class JDBCTarget extends constructs.Construct {
    target: IJDBCTargetObject;
    constructor(scope: constructs.Construct, id: string);
}
