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