import { IDraft, IModel } from "../../hub-types"; /** * Builds a draft with a subset of the model properties * @param {*} model - item model * @param {*} includeList - list of property paths to include in draft object */ export declare function buildDraft(model: IModel, includeList: string[]): IDraft;