import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CustomFileTypesConfig extends cdktf.TerraformMetaArguments { /** * Additional information about the custom file type, if any. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/custom_file_types#description CustomFileTypes#description} */ readonly description?: string; /** * The file type extension. The maximum extension length is 10 characters. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/custom_file_types#extension CustomFileTypes#extension} */ readonly extension?: string; /** * The name of the custom file type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/custom_file_types#name CustomFileTypes#name} */ readonly name?: string; } /** * Represents a {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/custom_file_types zia_custom_file_types} */ export declare class CustomFileTypes extends cdktf.TerraformResource { static readonly tfResourceType = "zia_custom_file_types"; /** * Generates CDKTF code for importing a CustomFileTypes 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 CustomFileTypes to import * @param importFromId The id of the existing CustomFileTypes that should be imported. Refer to the {@link https://registry.terraform.io/providers/zscaler/zia/4.6.5/docs/resources/custom_file_types#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CustomFileTypes 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/zscaler/zia/4.6.5/docs/resources/custom_file_types zia_custom_file_types} Resource * * @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 CustomFileTypesConfig = {} */ constructor(scope: Construct, id: string, config?: CustomFileTypesConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _extension?; get extension(): string; set extension(value: string); resetExtension(): void; get extensionInput(): string; get fileId(): any; get fileTypeId(): any; get id(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }