/**
 * Interfaces
 */
export interface LoggerOptions {
    devmodeParam?: string;
    loggerParam?: string;
}
export interface Logger {
    options: LoggerOptions;
    pluginName: string;
    initialize: any;
}
/**
 * Plugin
 */
declare const VeamsLogger: Logger;
export default VeamsLogger;
