import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDatabaseDbNodeConsoleConnectionConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node_console_connection#db_node_id DataOciDatabaseDbNodeConsoleConnection#db_node_id}
    */
    readonly dbNodeId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node_console_connection#id DataOciDatabaseDbNodeConsoleConnection#id}
    *
    * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
    * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
    */
    readonly id: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node_console_connection oci_database_db_node_console_connection}
*/
export declare class DataOciDatabaseDbNodeConsoleConnection extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_database_db_node_console_connection";
    /**
    * Generates CDKTF code for importing a DataOciDatabaseDbNodeConsoleConnection resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DataOciDatabaseDbNodeConsoleConnection to import
    * @param importFromId The id of the existing DataOciDatabaseDbNodeConsoleConnection that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node_console_connection#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciDatabaseDbNodeConsoleConnection to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_db_node_console_connection oci_database_db_node_console_connection} Data Source
    *
    * @param scope The scope in which to define this construct
    * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
    * @param options DataOciDatabaseDbNodeConsoleConnectionConfig
    */
    constructor(scope: Construct, id: string, config: DataOciDatabaseDbNodeConsoleConnectionConfig);
    get compartmentId(): string;
    get connectionString(): string;
    private _dbNodeId?;
    get dbNodeId(): string;
    set dbNodeId(value: string);
    get dbNodeIdInput(): string | undefined;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get fingerprint(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    private _id?;
    get id(): string;
    set id(value: string);
    get idInput(): string | undefined;
    get lifecycleDetails(): string;
    get publicKey(): string;
    get serviceHostKeyFingerprint(): string;
    get state(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
