export type AuditAction = 'check' | 'grant' | 'revoke' | 'modify';
export declare class AuditLogEntity {
    id: string;
    userId: string;
    action: AuditAction;
    target: string;
    result: boolean;
    metadata: Record<string, any>;
    timestamp: Date;
}
