import type { UmbDocumentBlueprintAuditLogModel } from './types.js'; import type { UmbAuditLogDataSource, UmbAuditLogRequestArgs } from '../../../../core/audit-log/index.js'; import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; export declare class UmbDocumentBlueprintAuditLogServerDataSource implements UmbAuditLogDataSource { #private; constructor(host: UmbControllerHost); getAuditLog(args: UmbAuditLogRequestArgs): Promise<{ data: { items: UmbDocumentBlueprintAuditLogModel[]; total: number; }; error?: undefined; } | { error: import("../../../../core/resources/index.js").UmbCancelError | import("../../../../core/resources/index.js").UmbApiError | undefined; data?: undefined; }>; }