import { EntitySchema } from "typeorm"; import { View } from "typeorm/schema-builder/view/View"; import { Table } from "typeorm/schema-builder/table/Table"; /** * convert entity to raw table information * * @param entity * @returns */ export declare function entitySchemaToTable(entity: EntitySchema): Table | View;