import { AxiosInstance } from "axios"; import { Resource } from "../Resource"; type Diff = { action?: string; path?: Array; old?: string | null; new?: string | null; }; export type AuditLog = { id: string; resourceId: string; resourceType: string; clientId: string; trigger: string; action: string; memberId: string | null; diff: Diff | null; createdAt: string; }; export declare class AuditLogs extends Resource { constructor(axiosInstance: AxiosInstance); get(id: string): Promise; list({ page, pageSize }?: { page?: number; pageSize?: number; }): Promise; } export {};