import { LogSource } from './log-source';
export declare class LogSourceParams {
    protected name: string;
    protected logSource: LogSource;
    protected enabled: boolean;
    constructor(enabled: boolean, logSource: LogSource);
    getName(): string;
    isEnabled(_functionInfo: string): boolean;
    setEnabled(isEnable: boolean): void;
    handle(_functionInfo: string, _valOrFunc: any): boolean;
}
