import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataYandexBillingCloudBindingConfig extends cdktf.TerraformMetaArguments { /** * ID of billing account to bind cloud to. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/billing_cloud_binding#billing_account_id DataYandexBillingCloudBinding#billing_account_id} */ readonly billingAccountId: string; /** * Service Instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/billing_cloud_binding#cloud_id DataYandexBillingCloudBinding#cloud_id} */ readonly cloudId: string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/billing_cloud_binding yandex_billing_cloud_binding} */ export declare class DataYandexBillingCloudBinding extends cdktf.TerraformDataSource { static readonly tfResourceType = "yandex_billing_cloud_binding"; /** * Generates CDKTF code for importing a DataYandexBillingCloudBinding resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataYandexBillingCloudBinding to import * @param importFromId The id of the existing DataYandexBillingCloudBinding that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/billing_cloud_binding#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataYandexBillingCloudBinding to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/billing_cloud_binding yandex_billing_cloud_binding} 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 DataYandexBillingCloudBindingConfig */ constructor(scope: Construct, id: string, config: DataYandexBillingCloudBindingConfig); private _billingAccountId?; get billingAccountId(): string; set billingAccountId(value: string); get billingAccountIdInput(): string; private _cloudId?; get cloudId(): string; set cloudId(value: string); get cloudIdInput(): string; get id(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }