import { IFmModelMeta } from "../types"; import { epochWithMilliseconds } from "common-types"; export declare class Model { /** The primary-key for the record */ id?: string; /** The last time that a given record was updated */ lastUpdated?: epochWithMilliseconds; /** The datetime at which this record was first created */ createdAt?: epochWithMilliseconds; /** Metadata properties of the given schema */ META?: IFmModelMeta; }