import type { AxiosInstance } from "axios"; type Params = { baseUrl?: string; endpoint?: string; configId?: string; externalResourceId?: string[]; enabled?: boolean; http?: AxiosInstance; }; export type DistinctValuesResponse = { success: boolean; request_id?: string; data: { change_made_title: string[]; change_made_by_user: Record; truncated: boolean; }; error: any; }; type Option = { label: string; value: string; }; export declare const useAuditLogDistinctValues: ({ baseUrl, endpoint, configId, externalResourceId, enabled, http, }: Params) => { data: { change_made_title: string[]; change_made_by_user: Record; truncated: boolean; } | null; loading: boolean; error: unknown; modifiedByOptions: Option[]; changeTitleOptions: Option[]; }; export {}; //# sourceMappingURL=useAuditLogDistinctValues.d.ts.map