export declare const LoggerType: {
    /**
     * Azure Event Hub as log destination.
     */
    readonly AzureEventHub: "azureEventHub";
    /**
     * Azure Application Insights as log destination.
     */
    readonly ApplicationInsights: "applicationInsights";
};
/**
 * Logger type.
 */
export type LoggerType = (typeof LoggerType)[keyof typeof LoggerType];
