import { TEnv } from '@antscorp/antsomi-ui/es/types/config'; import { AxiosRequestConfig } from 'axios'; import { Auth } from '../../types'; type EventAttribute = { eventPropertyDisplay: string; eventPropertyName: string; translateLabel: string; autoSuggestion: boolean; }; type ResponseType = { data: { entries: unknown[]; }; }; export declare const getEventAttribute: (params: { eventPropertynName: string; env: TEnv; auth: Auth; config?: AxiosRequestConfig; }) => Promise; export {};