import { FieldAttribute } from "./attribute"; import { Doc } from "./doc"; export declare function generateField(rule: FieldAttribute, indent: string): string; /** * Render any fields that are not associated with a table. * * Note that this should be run after table attributes have beeen added to * classes and enums, but before tables are rendered (which removes the table * attribute). */ export declare function renderStandaloneFields(docs: Doc[]): Doc[];