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