export declare class CamundaSupportLogger {
    private static instance;
    private readonly enabled;
    private readonly filepath;
    private constructor();
    static getInstance(): CamundaSupportLogger;
    log(message: string | number | boolean | object, addTimestamp?: boolean): void;
}
export default function safeStringify(object: any, { indentation }?: {
    indentation: number;
}): string;
