import { Doc } from "./doc"; /** * Adds a table attribute to each standalone field that references an enum table. */ export declare function addTableToEnumFields(docs: Doc[]): Doc[]; /** * Merges all enum attributes on each doc into a single attribute. * This should be run after tables are merged. */ export declare function mergeEnumAttributes(docs: Doc[]): Doc[];