import { IAgentLogger } from "../../types";
export declare class AzureFunctionsWriter implements IAgentLogger {
    private _appName;
    private _instrumentationKey;
    private _agentVersion;
    constructor(instrumentationKey: string);
    log(log: any): void;
    error(log: any): void;
    private _getAzureFnLog;
}
