/**
 * Utility function to log telemetry.
 * @param feature The task/feature name for this telemetry
 * @param telem A JSON object containing a dictionary of variables that will be appended to
 * common system vars and loggged.
 */
export declare function emitTelemetry(area: string, feature: string, taskSpecificTelemetry: any): void;
/**
 * A utility function to log the first 1024 characters from SDTERR
 * @param feature The task/feature name for this telemetry
 * @param exitCode The exit code from your program
 */
export declare function logResult(area: string, feature: string, exitCode: number): void;
