import { Struct } from './Struct';
import { DateTime } from './DateTime';
import { Identity } from '../types/Identity';
import { Json } from '../types/Json';
export declare class Audit extends Struct {
    readonly by: Identity;
    readonly when: DateTime;
    constructor(json?: Json);
}
