import * as outputs from "../types/output"; /** * The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` * environment variable */ export declare const accessKey: string | undefined; /** * An `assumeRole` block (documented below). Only one `assumeRole` block may be in the configuration. */ export declare const assumeRole: outputs.config.AssumeRole | undefined; /** * CUSTOMER HEADERS for Volcengine Provider. The customerHeaders field uses commas (,) to separate multiple headers, and * colons (:) to separate each header key from its corresponding value. */ export declare const customerHeaders: string | undefined; /** * Disable SSL for Volcengine Provider */ export declare const disableSsl: boolean | undefined; /** * An `endpoints` block (documented below). Only one `endpoints` block may be in the configuration. */ export declare const endpoints: outputs.config.Endpoints | undefined; /** * The file path for Volcengine Provider configuration. It can be sourced from the `VOLCENGINE_FILE_PATH` environment * variable */ export declare const filePath: string | undefined; /** * The profile for Volcengine Provider. It can be sourced from the `VOLCENGINE_PROFILE` environment variable */ export declare const profile: string | undefined; /** * PROXY URL for Volcengine Provider */ export declare const proxyUrl: string | undefined; /** * The Region for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_REGION` * environment variable */ export declare const region: string | undefined; /** * he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` * environment variable */ export declare const secretKey: string | undefined; /** * The Session Token for Volcengine Provider. It can also be sourced from the `VOLCENGINE_SESSION_TOKEN` environment * variable */ export declare const sessionToken: string | undefined;