import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciObjectstoragePreauthrequestConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_preauthrequest#bucket DataOciObjectstoragePreauthrequest#bucket}
    */
    readonly bucket: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_preauthrequest#namespace DataOciObjectstoragePreauthrequest#namespace}
    */
    readonly namespace: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_preauthrequest#par_id DataOciObjectstoragePreauthrequest#par_id}
    */
    readonly parId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_preauthrequest oci_objectstorage_preauthrequest}
*/
export declare class DataOciObjectstoragePreauthrequest extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_objectstorage_preauthrequest";
    /**
    * Generates CDKTF code for importing a DataOciObjectstoragePreauthrequest 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 DataOciObjectstoragePreauthrequest to import
    * @param importFromId The id of the existing DataOciObjectstoragePreauthrequest that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_preauthrequest#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciObjectstoragePreauthrequest 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/objectstorage_preauthrequest oci_objectstorage_preauthrequest} 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 DataOciObjectstoragePreauthrequestConfig
    */
    constructor(scope: Construct, id: string, config: DataOciObjectstoragePreauthrequestConfig);
    get accessType(): string;
    get accessUri(): string;
    private _bucket?;
    get bucket(): string;
    set bucket(value: string);
    get bucketInput(): string | undefined;
    get bucketListingAction(): string;
    get fullPath(): string;
    get id(): string;
    get name(): string;
    private _namespace?;
    get namespace(): string;
    set namespace(value: string);
    get namespaceInput(): string | undefined;
    get object(): string;
    get objectName(): string;
    private _parId?;
    get parId(): string;
    set parId(value: string);
    get parIdInput(): string | undefined;
    get timeCreated(): string;
    get timeExpires(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
