import type { AxiosInstance } from "axios"; type Query = { externalResourceId: string[]; userEmails?: string[]; changeTitle?: string[]; modifiedDateStart?: Date; modifiedDateEnd?: Date; orderBy?: "latestFirst" | "oldestFirst" | "impactPercentageHighToLow" | "impactPercentageLowToHigh"; content?: string; pageSize?: number; impactPercentageStart?: number; impactPercentageEnd?: number; }; type Params = { baseUrl: string; endpoint: string; configId: string; query: Query; http?: AxiosInstance; }; export declare const useAuditLogsData: ({ baseUrl, endpoint, configId, query, http }: Params) => { audits: any[]; loading: boolean; loadingMore: boolean; hasMore: boolean; fetchMore: () => void; refetch: () => Promise; }; export {}; //# sourceMappingURL=useAuditLogsData.d.ts.map