import type { Env } from '@livechat/customer-auth/src/types'; export type Config = { env: Env; organizationId: string; eventName: string; }; /** * Logs event to Graylog with provided config data. * Logging request is fired only when all of those conditions are true: * 1. package is used in lc production environment * 2. package is used standalone because only then process.env.PUBLIC_CUSTOMER_SDK_PACKAGE_NAME will be set to customer_sdk */ export declare const log: ({ env, organizationId, eventName }: Config) => Promise; //# sourceMappingURL=index.d.ts.map