/**
 * Copyright (c) HashiCorp, Inc.
 * SPDX-License-Identifier: MPL-2.0
 */
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataDatabricksCleanRoomAutoApprovalRuleConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule#author_collaborator_alias DataDatabricksCleanRoomAutoApprovalRule#author_collaborator_alias}
    */
    readonly authorCollaboratorAlias?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule#author_scope DataDatabricksCleanRoomAutoApprovalRule#author_scope}
    */
    readonly authorScope?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule#clean_room_name DataDatabricksCleanRoomAutoApprovalRule#clean_room_name}
    */
    readonly cleanRoomName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule#runner_collaborator_alias DataDatabricksCleanRoomAutoApprovalRule#runner_collaborator_alias}
    */
    readonly runnerCollaboratorAlias?: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule databricks_clean_room_auto_approval_rule}
*/
export declare class DataDatabricksCleanRoomAutoApprovalRule extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "databricks_clean_room_auto_approval_rule";
    /**
    * Generates CDKTF code for importing a DataDatabricksCleanRoomAutoApprovalRule 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 DataDatabricksCleanRoomAutoApprovalRule to import
    * @param importFromId The id of the existing DataDatabricksCleanRoomAutoApprovalRule that should be imported. Refer to the {@link https://registry.terraform.io/providers/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataDatabricksCleanRoomAutoApprovalRule 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/databricks/databricks/1.86.0/docs/data-sources/clean_room_auto_approval_rule databricks_clean_room_auto_approval_rule} 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 DataDatabricksCleanRoomAutoApprovalRuleConfig = {}
    */
    constructor(scope: Construct, id: string, config?: DataDatabricksCleanRoomAutoApprovalRuleConfig);
    private _authorCollaboratorAlias?;
    get authorCollaboratorAlias(): string;
    set authorCollaboratorAlias(value: string);
    resetAuthorCollaboratorAlias(): void;
    get authorCollaboratorAliasInput(): string | undefined;
    private _authorScope?;
    get authorScope(): string;
    set authorScope(value: string);
    resetAuthorScope(): void;
    get authorScopeInput(): string | undefined;
    private _cleanRoomName?;
    get cleanRoomName(): string;
    set cleanRoomName(value: string);
    resetCleanRoomName(): void;
    get cleanRoomNameInput(): string | undefined;
    get createdAt(): number;
    get ruleId(): string;
    get ruleOwnerCollaboratorAlias(): string;
    private _runnerCollaboratorAlias?;
    get runnerCollaboratorAlias(): string;
    set runnerCollaboratorAlias(value: string);
    resetRunnerCollaboratorAlias(): void;
    get runnerCollaboratorAliasInput(): string | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
