import { IAzure } from "./IAzure";
import { LogLevel } from '../logLevel';
export declare class AzureSharedKey implements IAzure {
    origin: string;
    keyToken: string;
    container: string;
    storageName: string;
    constructor(storageName: string, keyToken: string, origin: string, container?: string);
    log(logLevel: LogLevel, ...text: string[]): Promise<boolean>;
}
