export declare const LOGGING_AUDIT = "LOGGING/AUDIT";
export interface ILoggingAuditAction {
    type: typeof LOGGING_AUDIT;
    timestamp: number;
}
export declare function loggingAudit(): {
    type: string;
    timestamp: number;
};
export declare const onLoggingAudit: () => import("rxjs").Observable<ILoggingAuditAction>;
