import GoogleCloudRegion from './GoogleCloudRegion';
import Input from './Input';
import InputType from './InputType';
/**
 * @export
 * @class GcsInput
 */
export declare class GcsInput extends Input {
    /**
     * Discriminator property for Input
     * @type {string}
     * @memberof GcsInput
     */
    readonly type: InputType;
    /**
     * Name of the bucket (required)
     * @type {string}
     * @memberof GcsInput
     */
    bucketName?: string;
    /**
     * The cloud region in which the bucket is located. Is used to determine the ideal location for your encodings automatically.
     * @type {GoogleCloudRegion}
     * @memberof GcsInput
     */
    cloudRegion?: GoogleCloudRegion;
    /**
     * GCS access key (required)
     * @type {string}
     * @memberof GcsInput
     */
    accessKey?: string;
    /**
     * GCS secret key (required)
     * @type {string}
     * @memberof GcsInput
     */
    secretKey?: string;
    constructor(obj?: Partial<GcsInput>);
}
export default GcsInput;
