import type { LoggerEvent } from '../../utils'; interface LogProps extends LoggerEvent { application?: string; label?: string; } export declare const useLogEvent: (category: string, action?: string) => (props?: Omit, 'application' | 'category'>) => void; export declare const logCategories: { artifactDetails: string; }; export {};