export declare class SmartDebug {
private debugEnabled;
/**
* enables debugging output
*/
enableDebugging(): void;
* logs a message based on the contraints of the SmartDebug instance
log(logObject: any): void;
}