import AzureServicePrincipal from './AzureServicePrincipal';
import Output from './Output';
import OutputType from './OutputType';
/**
 * @export
 * @class AzureOutput
 */
export declare class AzureOutput extends Output {
    /**
     * Discriminator property for Output
     * @type {string}
     * @memberof AzureOutput
     */
    readonly type: OutputType;
    /**
     * Azure Account Name (required)
     * @type {string}
     * @memberof AzureOutput
     */
    accountName?: string;
    /**
     * Azure Account Key
     * @type {string}
     * @memberof AzureOutput
     */
    accountKey?: string;
    /**
     * @type {AzureServicePrincipal}
     * @memberof AzureOutput
     */
    servicePrincipal?: AzureServicePrincipal;
    /**
     * Name of the bucket (required)
     * @type {string}
     * @memberof AzureOutput
     */
    container?: string;
    constructor(obj?: Partial<AzureOutput>);
}
export default AzureOutput;
