import type { PuristaConfig } from './loadPuristaConfig.js'; /** * Convert an event label to the event naming convention configured in `purista.json`. * * @example * ```ts * convertToProjectEventCasing('user created', { ...config, eventConvention: 'constantCase' }) * // "USER_CREATED" * ``` */ export declare const convertToProjectEventCasing: (input: string, puristaProjectConfig: PuristaConfig) => string; //# sourceMappingURL=convertToProjectEventCasing.d.ts.map