import GoogleCloudRegion from './GoogleCloudRegion';
import Input from './Input';
import InputType from './InputType';
/**
 * @export
 * @class GcsServiceAccountInput
 */
export declare class GcsServiceAccountInput extends Input {
    /**
     * Discriminator property for Input
     * @type {string}
     * @memberof GcsServiceAccountInput
     */
    readonly type: InputType;
    /**
     * GCS projectId (required)
     * @type {string}
     * @memberof GcsServiceAccountInput
     */
    serviceAccountCredentials?: string;
    /**
     * Name of the bucket (required)
     * @type {string}
     * @memberof GcsServiceAccountInput
     */
    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 GcsServiceAccountInput
     */
    cloudRegion?: GoogleCloudRegion;
    constructor(obj?: Partial<GcsServiceAccountInput>);
}
export default GcsServiceAccountInput;
