import { Local } from "./Local"; import { Partner } from "./Partner"; import { Master } from "./Master"; export declare class LocalChange { id: number; local: Local; changes: any | null; created: Date; created_by: Partner | null; assigned_to: Master | null; operation_type: number; comments: string | null; status: number; }