export type JSONValue = string | number | boolean | {
    [x: string]: JSONValue;
} | Array<JSONValue>;
export type LoggableExtraData = {
    destinationId: string;
    workspaceId: string;
    module: string;
    implementation: string;
    sourceId: string;
    destinationType: string;
    feature?: string;
};
//# sourceMappingURL=types.d.ts.map